All of lore.kernel.org
 help / color / mirror / Atom feed
* sumo][Pull request
@ 2018-11-26 16:03 Armin Kuster
  0 siblings, 0 replies; 2+ messages in thread
From: Armin Kuster @ 2018-11-26 16:03 UTC (permalink / raw)
  To: openembedded-devel

The following changes since commit 2bb21ef27c4b0c9d52d30b3b2c5a0160fd02b966:

  poppler: Update to 0.64 (2018-09-27 08:49:10 -0700)

are available in the git repository at:

  git://git.openembedded.org/meta-openembedded sumo-next

for you to fetch changes up to 8760facba1bceb299b3613b8955621ddaa3d4c3f:

  wireshark: 2.4.8 src moved to all-versions (2018-11-26 08:48:11 -0700)

----------------------------------------------------------------
Armin Kuster (4):
      boinc: refresh patches
      postgresql: update to 9.4.20
      sblim-sfc-common: use official SPDX license for EPL
      wireshark: 2.4.8 src moved to all-versions

Gregory Vimont (1):
      tbb: check the version of the cross gcc instead of host gcc

Leon Anavi (1):
      rygel: Update license to LGPLv2.1

Richard Purdie (1):
      xmlstarlet: Disable PARALLEL_MAKE (again)

 .../recipes-connectivity/rygel/rygel_0.34.0.bb     |  2 +-
 .../recipes-support/wireshark/wireshark_2.4.8.bb   |  2 +-
 ...0001-Use-pkg-config-for-libxml2-detection.patch |  8 +--
 .../postgresql/files/not-check-libperl.patch       | 10 ++--
 .../{postgresql_9.4.17.bb => postgresql_9.4.20.bb} |  4 +-
 .../boinc/boinc-client/boinc-AM_CONDITIONAL.patch  | 12 +++--
 .../sblim-sfc-common/sblim-sfc-common_1.0.1.bb     |  2 +-
 meta-oe/recipes-support/tbb/tbb.bb                 |  1 +
 .../tbb/tbb/0002-linux-Fix-gcc-version-check.patch | 57 ++++++++++++++++++++++
 .../recipes-support/xmlstarlet/xmlstarlet_1.6.1.bb |  5 ++
 10 files changed, 84 insertions(+), 19 deletions(-)
 rename meta-oe/recipes-dbs/postgresql/{postgresql_9.4.17.bb => postgresql_9.4.20.bb} (63%)
 create mode 100644 meta-oe/recipes-support/tbb/tbb/0002-linux-Fix-gcc-version-check.patch


^ permalink raw reply	[flat|nested] 2+ messages in thread

* sumo][Pull request
@ 2019-03-25 23:28 akuster808
  0 siblings, 0 replies; 2+ messages in thread
From: akuster808 @ 2019-03-25 23:28 UTC (permalink / raw)
  To: Patches and discussions about the oe-core layer

Please consider these changes for the next sumo release.


The following changes since commit 4af5a794497746629a35726ce515556b53d40da9:

  lttng-tools: update to 2.9.11 (2019-03-24 18:39:35 -0700)

are available in the git repository at:

  git://git.openembedded.org/openembedded-core sumo-next

for you to fetch changes up to 94a3ca85d30fc957f8f01a216a75342be49f9143:

  oe-build-perf-report/gitarchive: Move common useful functions to
library (2019-03-25 23:12:08 +0000)

----------------------------------------------------------------
Mazliana (2):
      scripts/resulttool: enable manual execution and result creation
      resulttool/manualexecution: To output right test case id

Richard Purdie (13):
      resulttool: Improvements to allow integration to the autobuilder
      resulttool/resultutils: Avoids tracebacks for missing logs
      resulttool/store: Handle results files for multiple revisions
      resulttool/report: Handle missing metadata sections more cleanly
      resulttool/report: Ensure test suites with no results show up on
the report
      resulttool/report: Ensure ptest results are sorted
      resulttool/store: Fix missing variable causing testresult corruption
      oe-build-perf-report: Allow branch without hostname
      oe-build-perf-report: Allow commits from different branches
      oe-build-perf-report: Improve branch comparision handling
      oe-build-perf-report: Fix missing buildstats comparisions
      scripts/oe-git-archive: Separate out functionality to library function
      oe-build-perf-report/gitarchive: Move common useful functions to
library

Yeoh Ee Peng (4):
      resulttool: enable merge, store, report and regression analysis
      resulttool/regression: Ensure regressoin results are sorted
      scripts/resulttool: Enable manual result store and regression
      resulttool/report: Enable roll-up report for a commit

 meta/lib/oeqa/files/testresults/testresults.json   |  40 ++++
 meta/lib/oeqa/selftest/cases/resulttooltests.py    |  94 ++++++++
 meta/lib/oeqa/utils/gitarchive.py                  | 244
+++++++++++++++++++++
 scripts/lib/resulttool/__init__.py                 |   0
 scripts/lib/resulttool/manualexecution.py          | 142 ++++++++++++
 scripts/lib/resulttool/merge.py                    |  42 ++++
 scripts/lib/resulttool/regression.py               | 192 ++++++++++++++++
 scripts/lib/resulttool/report.py                   | 150 +++++++++++++
 scripts/lib/resulttool/resultutils.py              | 131 +++++++++++
 scripts/lib/resulttool/store.py                    |  99 +++++++++
 .../resulttool/template/test_report_full_text.txt  |  44 ++++
 scripts/oe-build-perf-report                       | 124 ++++-------
 scripts/oe-git-archive                             | 166 +-------------
 scripts/resulttool                                 |  93 ++++++++
 14 files changed, 1314 insertions(+), 247 deletions(-)
 create mode 100644 meta/lib/oeqa/files/testresults/testresults.json
 create mode 100644 meta/lib/oeqa/selftest/cases/resulttooltests.py
 create mode 100644 meta/lib/oeqa/utils/gitarchive.py
 create mode 100644 scripts/lib/resulttool/__init__.py
 create mode 100755 scripts/lib/resulttool/manualexecution.py
 create mode 100644 scripts/lib/resulttool/merge.py
 create mode 100644 scripts/lib/resulttool/regression.py
 create mode 100644 scripts/lib/resulttool/report.py
 create mode 100644 scripts/lib/resulttool/resultutils.py
 create mode 100644 scripts/lib/resulttool/store.py
 create mode 100644
scripts/lib/resulttool/template/test_report_full_text.txt
 create mode 100755 scripts/resulttool



^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2019-03-25 23:28 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-11-26 16:03 sumo][Pull request Armin Kuster
  -- strict thread matches above, loose matches on Subject: below --
2019-03-25 23:28 akuster808

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.