[yocto] [yocto-autobuilder-helper][PATCH] patchtest: add selftest runner

2023-11-14 Thread Trevor Gamblin
Add a runner that installs the patchtest dependencies in a Python venv and then starts patchtest's selftests. Signed-off-by: Trevor Gamblin --- config.json| 7 +++ scripts/run-patchtest-selftest | 18 ++ 2 files changed, 25 insertions(+) create mode

[yocto][OE-core] Notification: Patchtest service going live

2023-10-30 Thread Trevor Gamblin
Hello all, This is to notify the community that the Patchtest service will be going live today to provide patch feedback. For now, this is exclusive to submissions related to the openembedded-core mailing list, but support for other lists is planned in the future. If/when the service detects

[yocto] [patchtest][PATCH] patchtest: refactor and simplify modules

2023-08-25 Thread Trevor Gamblin
aliases like "pti" Signed-off-by: Trevor Gamblin --- lib/{patchtestdata.py => data.py} | 0 lib/{patchtestpatch.py => patch.py} | 6 ++--- lib/{patchtestrepo.py => repo.py} | 10 - patchtest | 35 +++-- 4 files cha

[yocto] [patchtest][PATCH] get-latest-series: add script

2023-08-25 Thread Trevor Gamblin
(defined as $SERIES_TEST_LOG in the script) to track previously-consumed series so that they don't get tested multiple times. Signed-off-by: Trevor Gamblin --- scripts/get-latest-series | 112 ++ 1 file changed, 112 insertions(+) create mode 100755 scripts/get-latest

Re: [yocto] Facing issue with new repo build in yocto

2023-06-16 Thread Trevor Gamblin
On 2023-06-16 02:43, Prashant Badsheshi wrote: Added a new repo/recipe called “displayport”, please find the bb file pasted below. Did a “devtool modify displayport”. Got the displayport folder in my local workspace/sources/. Added the required meson.build, source and header filles.

[yocto] [yocto-autobuilder-helper][PATCH] ab-janitor: only rm trashdir files over 60s old

2023-06-13 Thread Trevor Gamblin
-by: Trevor Gamblin --- janitor/ab-janitor | 8 +++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/janitor/ab-janitor b/janitor/ab-janitor index 080b598..659817e 100755 --- a/janitor/ab-janitor +++ b/janitor/ab-janitor @@ -43,7 +43,13 @@ def trash_processor(trashdir): try

[yocto] [patchtest-oe][PATCH] test_mbox_signed_off_by: fix test

2023-06-12 Thread Trevor Gamblin
This fixes a consistent issue with false failures being reported when testing for authors' signed-off-bys in mboxes. Instead of manually compiling a regex pattern, use pyparsing's AtLineStart to check for the signature's presence at the beginning of the line. Signed-off-by: Trevor Gamblin

[yocto] [patchtest][PATCH] requirements.txt: Add pylint, pyparsing, unidiff

2023-06-12 Thread Trevor Gamblin
Add some dependencies that patchtest now relies on to requirements.txt. Signed-off-by: Trevor Gamblin --- requirements.txt | 3 +++ 1 file changed, 3 insertions(+) diff --git a/requirements.txt b/requirements.txt index 7f7afbf..47f2157 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1

Re: [yocto] Snort 2.9 into Snort 3 recipe

2023-06-12 Thread Trevor Gamblin
ovided by those deleted patches aren't still required somewhere in the new source files. If you do 'grep -r "inherit cmake"' on openembedded-core/meta, you can find many examples of other recipes that use CMake for building that you could use as references. Thank you for reading

Re: [yocto] Snort 2.9 into Snort 3 recipe

2023-06-09 Thread Trevor Gamblin
On 2023-06-09 10:05, Rostanin Gleb SBR DIRCS wrote: Hello OpenEmbedded Community, currently I am working on implementing the Snort IDS on an embedded system with the Yocto Linux OS. As OpenEmbedded already provides a recipe for Snort 2.9 it is easy to install snort into the OS.

[yocto] [yocto-autobuilder-helper][PATCH] clobberdir: only move dirs more than 60s old

2023-06-07 Thread Trevor Gamblin
See: https://bugzilla.yoctoproject.org/show_bug.cgi?id=14952 Help avoid contention by adding a check to ensure targets are at least 60s old when attempting to move them into a trash directory. Signed-off-by: Trevor Gamblin --- janitor/clobberdir | 10 +++--- 1 file changed, 7 insertions

Re: [yocto] Minutes: Yocto Project Weekly Triage Meeting 02/06/2023

2023-06-01 Thread Trevor Gamblin
On 2023-06-01 11:17, Sakib Sajal wrote: *Wiki: *https://wiki.yoctoproject.org/wiki/Bug_Triage *Attendees: *Richard Purdie, Steve Sakoman, Stephen Jolley, Bruce Ashfield, Joshua Watt, Trevor Gamblin, Randy Macleod, Alexandre Belloni, Tim Orling, Thomas Roos, Yoann Congal, Michael Opdenacker

[yocto] [patchtest][PATCH] core-image-patchtest: Add safe git directories

2023-05-24 Thread Trevor Gamblin
if the provided repo is owned by someone else. Signed-off-by: Trevor Gamblin --- meta-patchtest/recipes-core/images/core-image-patchtest.bb | 3 +++ 1 file changed, 3 insertions(+) diff --git a/meta-patchtest/recipes-core/images/core-image-patchtest.bb b/meta-patchtest/recipes-core/images/core-image

[yocto][patchtest][PATCH 11/11] python3-tomlkit: add recipe

2023-05-17 Thread Trevor Gamblin
python3-pylint requires python3-tomlkit, so copy the recipe from meta-python to avoid requiring that layer for patchtest. Signed-off-by: Trevor Gamblin --- .../python/python3-tomlkit/run-ptest | 3 +++ .../python/python3-tomlkit_0.11.8.bb | 23 +++ 2 files

[yocto][patchtest][PATCH 10/11] python3-platformdirs: add recipe

2023-05-17 Thread Trevor Gamblin
python3-pylint requires python3-platformdirs, so copy it from meta-python to avoid requiring that layer for patchtest. Signed-off-by: Trevor Gamblin --- .../python/python3-platformdirs/run-ptest | 3 ++ .../python/python3-platformdirs_3.5.1.bb | 35 +++ 2 files changed

[yocto][patchtest][PATCH 07/11] python3-wrapt: upgrade 1.10.10 -> 1.15.0

2023-05-17 Thread Trevor Gamblin
Copy the recipe from meta-python to handle the upgrade, so that patchtest can build it without requiring the layer. Signed-off-by: Trevor Gamblin --- .../python/python3-wrapt_1.10.10.bb | 15 --- .../python/python3-wrapt_1.15.0.bb | 16 2

[yocto][patchtest][PATCH 08/11] python3-dill: add recipe

2023-05-17 Thread Trevor Gamblin
python3-pylint requires python3-dill, so copy it from meta-python to avoid requiring that layer for patchtest. Signed-off-by: Trevor Gamblin --- .../python/python3-dill_0.3.6.bb| 17 + 1 file changed, 17 insertions(+) create mode 100644 meta-patchtest/recipes

[yocto][patchtest][PATCH 09/11] python3-mccabe: add recipe

2023-05-17 Thread Trevor Gamblin
python3-pylint requires python3-mccabe, so copy it from meta-python to avoid requiring that layer for patchtest. Signed-off-by: Trevor Gamblin --- .../recipes-devtools/python/python3-mccabe_0.7.0.bb | 11 +++ 1 file changed, 11 insertions(+) create mode 100644 meta-patchtest/recipes

[yocto][patchtest][PATCH 06/11] python3-unidiff: upgrade 0.5.4 -> 0.7.5

2023-05-17 Thread Trevor Gamblin
Copy the recipe from meta-python to handle the upgrade, so that patchtest can build it without requiring the layer. Signed-off-by: Trevor Gamblin --- .../python/python3-unidiff/run-ptest | 3 +++ .../python/python3-unidiff_0.5.4.bb | 9 --- .../python/python3

[yocto][patchtest][PATCH 05/11] python3-pyparsing: remove recipe

2023-05-17 Thread Trevor Gamblin
This is in oe-core now, so no need to carry it in patchtest. Signed-off-by: Trevor Gamblin --- .../python/python3-pyparsing_2.2.0.bb | 19 --- 1 file changed, 19 deletions(-) delete mode 100644 meta-patchtest/recipes-devtools/python/python3-pyparsing_2.2.0.bb diff

[yocto][patchtest][PATCH 03/11] python3-lazy-object-proxy: upgrade 1.3.1 -> 1.9.0

2023-05-17 Thread Trevor Gamblin
Copy the recipe from meta-python to handle the upgrade, so that patchtest can build it without requiring the layer. Signed-off-by: Trevor Gamblin --- .../python/python3-lazy-object-proxy_1.3.1.bb | 10 -- .../python/python3-lazy-object-proxy_1.9.0.bb | 11 +++ 2

[yocto][patchtest][PATCH 04/11] python3-pylint: upgrade 1.6.5 -> 2.17.4

2023-05-17 Thread Trevor Gamblin
Copy the recipe from meta-python to handle the upgrade, so that patchtest can build it without requiring the layer. Signed-off-by: Trevor Gamblin --- .../python/python3-pylint/run-ptest | 3 ++ .../python/python3-pylint_1.6.5.bb| 33 .../python/python3

[yocto][patchtest][PATCH v2 00/11] patchtest: layer updates

2023-05-17 Thread Trevor Gamblin
the meta-python layer. python3-pyparsing is in oe-core, so it's no longer needed in patchtest. Resending series so that the proper labels are present. Trevor Gamblin (11): python3-astroid: upgrade 1.5.3 -> 2.15.4 python3-isort: upgrade 4.2.15 -> 5.12.0 python3-lazy-object-proxy: upgrade

[yocto][patchtest][PATCH 01/11] python3-astroid: upgrade 1.5.3 -> 2.15.4

2023-05-17 Thread Trevor Gamblin
Copy the recipe from meta-python to handle the upgrade, so that patchtest can build it without needing that layer. Signed-off-by: Trevor Gamblin --- .../python/python3-astroid_1.5.3.bb | 20 --- .../python/python3-astroid_2.15.4.bb | 35 +++ 2 files

[yocto][patchtest][PATCH 02/11] python3-isort: upgrade 4.2.15 -> 5.12.0

2023-05-17 Thread Trevor Gamblin
Copy the recipe from meta-python to handle the upgrade, so that patchtest can build it without requiring the layer. Signed-off-by: Trevor Gamblin --- .../python/python3-isort_4.2.15.bb| 10 -- .../python/python3-isort_5.12.0.bb| 20 +++ 2 files

[yocto] [PATCH 11/11] python3-tomlkit: add recipe

2023-05-17 Thread Trevor Gamblin
python3-pylint requires python3-tomlkit, so copy the recipe from meta-python to avoid requiring that layer for patchtest. Signed-off-by: Trevor Gamblin --- .../python/python3-tomlkit/run-ptest | 3 +++ .../python/python3-tomlkit_0.11.8.bb | 23 +++ 2 files

[yocto] [PATCH 09/11] python3-mccabe: add recipe

2023-05-17 Thread Trevor Gamblin
python3-pylint requires python3-mccabe, so copy it from meta-python to avoid requiring that layer for patchtest. Signed-off-by: Trevor Gamblin --- .../recipes-devtools/python/python3-mccabe_0.7.0.bb | 11 +++ 1 file changed, 11 insertions(+) create mode 100644 meta-patchtest/recipes

[yocto] [PATCH 10/11] python3-platformdirs: add recipe

2023-05-17 Thread Trevor Gamblin
python3-pylint requires python3-platformdirs, so copy it from meta-python to avoid requiring that layer for patchtest. Signed-off-by: Trevor Gamblin --- .../python/python3-platformdirs/run-ptest | 3 ++ .../python/python3-platformdirs_3.5.1.bb | 35 +++ 2 files changed

[yocto] [PATCH 06/11] python3-unidiff: upgrade 0.5.4 -> 0.7.5

2023-05-17 Thread Trevor Gamblin
Copy the recipe from meta-python to handle the upgrade, so that patchtest can build it without requiring the layer. Signed-off-by: Trevor Gamblin --- .../python/python3-unidiff/run-ptest | 3 +++ .../python/python3-unidiff_0.5.4.bb | 9 --- .../python/python3

[yocto] [PATCH 08/11] python3-dill: add recipe

2023-05-17 Thread Trevor Gamblin
python3-pylint requires python3-dill, so copy it from meta-python to avoid requiring that layer for patchtest. Signed-off-by: Trevor Gamblin --- .../python/python3-dill_0.3.6.bb| 17 + 1 file changed, 17 insertions(+) create mode 100644 meta-patchtest/recipes

[yocto] [PATCH 07/11] python3-wrapt: upgrade 1.10.10 -> 1.15.0

2023-05-17 Thread Trevor Gamblin
Copy the recipe from meta-python to handle the upgrade, so that patchtest can build it without requiring the layer. Signed-off-by: Trevor Gamblin --- .../python/python3-wrapt_1.10.10.bb | 15 --- .../python/python3-wrapt_1.15.0.bb | 16 2

[yocto] [PATCH 04/11] python3-pylint: upgrade 1.6.5 -> 2.17.4

2023-05-17 Thread Trevor Gamblin
Copy the recipe from meta-python to handle the upgrade, so that patchtest can build it without requiring the layer. Signed-off-by: Trevor Gamblin --- .../python/python3-pylint/run-ptest | 3 ++ .../python/python3-pylint_1.6.5.bb| 33 .../python/python3

[yocto] [PATCH 05/11] python3-pyparsing: remove recipe

2023-05-17 Thread Trevor Gamblin
This is in oe-core now, so no need to carry it in patchtest. Signed-off-by: Trevor Gamblin --- .../python/python3-pyparsing_2.2.0.bb | 19 --- 1 file changed, 19 deletions(-) delete mode 100644 meta-patchtest/recipes-devtools/python/python3-pyparsing_2.2.0.bb diff

[yocto] [PATCH 02/11] python3-isort: upgrade 4.2.15 -> 5.12.0

2023-05-17 Thread Trevor Gamblin
Copy the recipe from meta-python to handle the upgrade, so that patchtest can build it without requiring the layer. Signed-off-by: Trevor Gamblin --- .../python/python3-isort_4.2.15.bb| 10 -- .../python/python3-isort_5.12.0.bb| 20 +++ 2 files

[yocto] [PATCH 03/11] python3-lazy-object-proxy: upgrade 1.3.1 -> 1.9.0

2023-05-17 Thread Trevor Gamblin
Copy the recipe from meta-python to handle the upgrade, so that patchtest can build it without requiring the layer. Signed-off-by: Trevor Gamblin --- .../python/python3-lazy-object-proxy_1.3.1.bb | 10 -- .../python/python3-lazy-object-proxy_1.9.0.bb | 11 +++ 2

[yocto] [PATCH 01/11] python3-astroid: upgrade 1.5.3 -> 2.15.4

2023-05-17 Thread Trevor Gamblin
Copy the recipe from meta-python to handle the upgrade, so that patchtest can build it without needing that layer. Signed-off-by: Trevor Gamblin --- .../python/python3-astroid_1.5.3.bb | 20 --- .../python/python3-astroid_2.15.4.bb | 35 +++ 2 files

[yocto][patchtest][PATCH 00/11] patchtest: layer updates

2023-05-17 Thread Trevor Gamblin
the meta-python layer. python3-pyparsing is in oe-core, so it's no longer needed in patchtest. Trevor Gamblin (11): python3-astroid: upgrade 1.5.3 -> 2.15.4 python3-isort: upgrade 4.2.15 -> 5.12.0 python3-lazy-object-proxy: upgrade 1.3.1 -> 1.9.0 python3-pylint: upgrade 1.6.5 -> 2.17

[yocto] [patchtest][PATCH 2/2] packagegroup-self-hosted.bbappend: fix RDEPENDS syntax

2023-05-05 Thread Trevor Gamblin
Signed-off-by: Trevor Gamblin --- .../packagegroups/packagegroup-self-hosted.bbappend | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/meta-patchtest/recipes-core/packagegroups/packagegroup-self-hosted.bbappend b/meta-patchtest/recipes-core/packagegroups

[yocto] [patchtest][PATCH 1/2] packagegroup-patchtest-oe.bb: fix RDEPENDS syntax

2023-05-05 Thread Trevor Gamblin
Signed-off-by: Trevor Gamblin --- .../recipes-core/packagegroups/packagegroup-patchtest-oe.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta-patchtest/recipes-core/packagegroups/packagegroup-patchtest-oe.bb b/meta-patchtest/recipes-core/packagegroups/packagegroup

[yocto] [patchtest][PATCH 7/7] README: Update maintainer list

2023-04-28 Thread Trevor Gamblin
Signed-off-by: Trevor Gamblin --- README | 1 + 1 file changed, 1 insertion(+) diff --git a/README b/README index 8e0ae71..b978855 100644 --- a/README +++ b/README @@ -44,6 +44,7 @@ Maintenance Maintainers: Paul Barker +Trevor Gamblin Links - -- 2.40.0

[yocto] [patchtest][PATCH 3/7] initscripts: update to use new override syntax

2023-04-28 Thread Trevor Gamblin
Signed-off-by: Trevor Gamblin --- .../recipes-core/initscripts/initscripts_1.0.bbappend | 8 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/meta-patchtest/recipes-core/initscripts/initscripts_1.0.bbappend b/meta-patchtest/recipes-core/initscripts/initscripts_1.0

[yocto] [patchtest][PATCH 4/7] initscripts: use mkdir before mv with patchtest initscript

2023-04-28 Thread Trevor Gamblin
Signed-off-by: Trevor Gamblin --- meta-patchtest/recipes-core/initscripts/initscripts/patchtest | 1 + 1 file changed, 1 insertion(+) diff --git a/meta-patchtest/recipes-core/initscripts/initscripts/patchtest b/meta-patchtest/recipes-core/initscripts/initscripts/patchtest index 3b075af

[yocto] [patchtest][PATCH 5/7] linux-yocto: update version, fix override syntax

2023-04-28 Thread Trevor Gamblin
Signed-off-by: Trevor Gamblin --- meta-patchtest/recipes-kernel/linux/linux-yocto_4.%.bbappend | 2 -- meta-patchtest/recipes-kernel/linux/linux-yocto_6.%.bbappend | 2 ++ 2 files changed, 2 insertions(+), 2 deletions(-) delete mode 100644 meta-patchtest/recipes-kernel/linux/linux-yocto_4

[yocto] [patchtest][PATCH 6/7] qemu-system-native: add virtfs to PACKAGECONFIG

2023-04-28 Thread Trevor Gamblin
Signed-off-by: Trevor Gamblin --- .../recipes-devtools/qemu/qemu-system-native_%.bbappend | 1 + 1 file changed, 1 insertion(+) create mode 100644 meta-patchtest/recipes-devtools/qemu/qemu-system-native_%.bbappend diff --git a/meta-patchtest/recipes-devtools/qemu/qemu-system-native_

[yocto] [patchtest][PATCH 0/7] patchtest: update to work with latest Yocto changes

2023-04-28 Thread Trevor Gamblin
hence the addition of the .bbappend file for that recipe. I've left the corresponding qemu .bbappend in place for now, but it might be removable after more testing. Trevor Gamblin (7): python3-pylint: update to use new override syntax qemu: update to use new override syntax initscript

[yocto] [patchtest][PATCH 2/7] qemu: update to use new override syntax

2023-04-28 Thread Trevor Gamblin
Signed-off-by: Trevor Gamblin --- meta-patchtest/recipes-devtools/qemu/qemu_%.bbappend | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta-patchtest/recipes-devtools/qemu/qemu_%.bbappend b/meta-patchtest/recipes-devtools/qemu/qemu_%.bbappend index 3ad9f03..4e5918b 100644

[yocto] [patchtest][PATCH 1/7] python3-pylint: update to use new override syntax

2023-04-28 Thread Trevor Gamblin
Signed-off-by: Trevor Gamblin --- meta-patchtest/recipes-devtools/python/python3-pylint_1.6.5.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta-patchtest/recipes-devtools/python/python3-pylint_1.6.5.bb b/meta-patchtest/recipes-devtools/python/python3-pylint_1.6.5.bb

[yocto] Minutes: Yocto Project Weekly Triage Meeting 4/14/2022

2022-04-14 Thread Trevor Gamblin
*Wiki: *https://wiki.yoctoproject.org/wiki/Bug_Triage *Attendees: *Alexandre, Bruce, Daiane, Joshua, Luca, Pavel, Randy, Richard, Saul, Stephen, Steve, Tim, Trevor *ARs:* N/A *Notes:* - Trevor has left WR/YP, so a new note-taker will be required for this meeting. It was great working with

[yocto] Minutes: Yocto Project Weekly Triage Meeting 4/7/2022

2022-04-07 Thread Trevor Gamblin
*Wiki: *https://wiki.yoctoproject.org/wiki/Bug_Triage *Attendees: *Luca, Randy, Richard, Ross, Saul, Stephen, Steve, Tim, Trevor *ARs:* - Randy to review AB-INT bugs and adjust/move as necessary - Randy to review 3.5+ bugs and move them as necessary - Stephen to update the reminder email

[yocto] Minutes: Yocto Project Weekly Triage Meeting 3/31/2022

2022-03-31 Thread Trevor Gamblin
*Wiki: *https://wiki.yoctoproject.org/wiki/Bug_Triage *Attendees: *Alexandre, Bruce, Luca, Michael, Randy, Richard, Saul, Stephen, Steve, Tim, Trevor *ARs:* - Richard to triage bug 14770* * *Notes:* - Trevor is leaving WR/YP, so a new note-taker will be required for this meeting - ~43%

[yocto] Minutes: Yocto Project Weekly Triage Meeting 3/24/2022

2022-03-24 Thread Trevor Gamblin
*Wiki: *https://wiki.yoctoproject.org/wiki/Bug_Triage *Attendees: *Alexandre, Bruce, Jon, Joshua, Luca, Randy, Richard, Saul, Stephen, Steve, Tim, Trevor *ARs:* - Randy to ask Sakib to update his Old Milestone bugs ** *Notes:* - ~43% of AB workers have been switched to SSDs. Failure rate

[yocto] Minutes: Yocto Project Weekly Triage Meeting 3/17/2022

2022-03-17 Thread Trevor Gamblin
*Wiki: *https://wiki.yoctoproject.org/wiki/Bug_Triage *Attendees: *Alexandre, Daiane, Luca, Randy, Richard, Ross, Saul, Stephen, Steve, Tim, Trevor *ARs:* - Randy to move remaining Medium+ M3s to M1 (and move to newcomer bugs category, where appropriate) - Stephen to create an issue for

[yocto] Minutes: Yocto Project Weekly Triage Meeting 3/10/2022

2022-03-10 Thread Trevor Gamblin
*Wiki: *https://wiki.yoctoproject.org/wiki/Bug_Triage *Attendees: *Alexandre, Joshua, Luca, Michael, Randy, Richard, Ross, Saul, Stephen, Steve, Tim, Trevor *ARs: * - Randy to move AB, 3.5 Enhancement M3 bugs to M4 or later - All to review Old Milestone bugs and move to M4 or later

[yocto] Minutes: Yocto Project Weekly Triage Meeting 3/3/2022

2022-03-03 Thread Trevor Gamblin
*Wiki: *https://wiki.yoctoproject.org/wiki/Bug_Triage *Attendees: *Alexandre, Armin, Daiane, Joshua, Luca, Pavel, Randy, Richard, Saul, Stephen, Steve, Tim, Trevor *ARs: * - Randy to talk to David Reyna about triaging his Toaster Future/3.99 bugs (25) *Notes:* - ~43% of AB workers have

[yocto] Minutes: Yocto Project Weekly Triage Meeting 2/24/2022

2022-02-24 Thread Trevor Gamblin
*Wiki: *https://wiki.yoctoproject.org/wiki/Bug_Triage *Attendees: *Armin, Bruce, Daiane, Joshua, Pavel, Randy, Richard, Ross, Saul, Stephen, Steve, Tim, Trevor *ARs: * ** - Randy to write an email list to the Yocto mailing lists to encourage users to check for existing bugs and add their

[yocto] Minutes: Yocto Project Weekly Triage Meeting 2/17/2022

2022-02-17 Thread Trevor Gamblin
*Wiki: *https://wiki.yoctoproject.org/wiki/Bug_Triage *Attendees: *Alejandro, Alexandre, Bruce, Daiane, Jan-Simon, Joshua, Michael, Pavel, Randy, Richard, Saul, Stephen, Steve, Tim, Trevor *ARs:* N/A ** *Notes:* - ~43% of AB workers have been switched to SSDs. Failure rate appears lower,

[yocto] Minutes: Yocto Project Weekly Triage Meeting 2/10/2022

2022-02-10 Thread Trevor Gamblin
*Wiki: *https://wiki.yoctoproject.org/wiki/Bug_Triage *Attendees: *Andrei, Alexandre, Armin, Bruce, Daiane, Joshua, Pavel, Randy, Richard, Saul, Stephen, Steve, Tim, Trevor *ARs:* - Saul to address NEEDINFO bugs from Robert Berger - Randy to search Bugzilla for prelink bugs to close

[yocto] Minutes: Yocto Project Weekly Triage Meeting 2/3/2022

2022-02-03 Thread Trevor Gamblin
*Wiki: *https://wiki.yoctoproject.org/wiki/Bug_Triage *Attendees: *Alejandro, Alexandre, Andrei, Armin, Bruce, Daiane, Michael, Pavel, Randy, Richard, Saul, Stephen, Steve, Tim, Trevor *ARs:* - Armin/Bruce/Trevor/Saul to move Old Milestone bugs to M3 or later ** *Notes:* - ~50% of AB

[yocto] Minutes: Yocto Project Weekly Triage Meeting 1/27/2022

2022-01-27 Thread Trevor Gamblin
*Wiki: *https://wiki.yoctoproject.org/wiki/Bug_Triage *Attendees: *Alexandre, Armin, Daiane, Michael, Randy, Richard, Ross, Saul, Stephen, Steve, Tim, Trevor *ARs:* - Randy to take a look AB-INT defects for M2s and update them to M3 - Everyone to review open bugs and move Old Milestone (M2)

[yocto] Minutes: Yocto Project Weekly Triage Meeting 1/20/2022

2022-01-20 Thread Trevor Gamblin
*Wiki: *https://wiki.yoctoproject.org/wiki/Bug_Triage *Attendees: *Bruce, Diane, Jate, Joshua, Márton, Michael, Randy, Richard, Saul, Stephen, Steve, Tim, Trevor *ARs:* - Randy/Stephen to move Medium+ 3.5 unassigned bugs to M3 - Stephen to make a note about prelink for next week's status

[yocto] Minutes: Yocto Project Weekly Triage Meeting 1/13/2022

2022-01-13 Thread Trevor Gamblin
*Wiki: *https://wiki.yoctoproject.org/wiki/Bug_Triage *Attendees: *Alexandre, Bruce, Michael, Randy, Richard, Ross, Saul, Stephen, Steve, Tim, Trevor *ARs:* N/A *Notes:* - ~50% of AB workers have been switched to SSDs. Still too early to determine what effect they are having on failure

[yocto] Minutes: Yocto Project Weekly Triage Meeting 1/6/2022

2022-01-06 Thread Trevor Gamblin
*Wiki: *https://wiki.yoctoproject.org/wiki/Bug_Triage *Attendees: *Alexandre, Joshua, Michael, Randy, Richard, Saul, Stephen, Steve, Tim, Trevor *ARs:* - Joshua to send a patch limiting the size of diffoscope output for reproducibility *Notes:* N/A *Medium+ 3.5 Unassigned

[yocto] Minutes: Yocto Project Weekly Triage Meeting 12/23/2021

2021-12-23 Thread Trevor Gamblin
*Wiki: *https://wiki.yoctoproject.org/wiki/Bug_Triage *Attendees: *Randy, Richard, Saul, Stephen, Steve, Trevor *ARs:* Happy Holidays! *Notes:* No triage meeting on December 30th *Medium+ 3.5 Unassigned Enhancements/Bugs: *75 (Last week 76) *Medium+ 3.99 Unassigned Enhancements/Bugs:

[yocto] Minutes: Yocto Project Weekly Triage Meeting 12/16/2021

2021-12-16 Thread Trevor Gamblin
*Wiki: *https://wiki.yoctoproject.org/wiki/Bug_Triage *Attendees: *Armin, Jon, Joshua, Michael, Randy, Richard, Ryan, Saul, Stephen, Steve, Trevor, Valerii *ARs:* - Randy to bump the M1s in the AB-INT list - Randy to remove AB-INT tempfs from the whiteboard field - Randy to move Medium+

[yocto] Minutes: Yocto Project Weekly Triage Meeting 12/9/2021

2021-12-09 Thread Trevor Gamblin
*Wiki: *https://wiki.yoctoproject.org/wiki/Bug_Triage *Attendees: *Alexandre, Anuj, Bruce, Daiane, Joshua, Michael, Ross, Saul, Stephen, Steve, Randy, Richard, Tim, Trevor *ARs:* N/A *Notes:* There was no meeting for 12/2/2021 due to Yocto Summit *Medium+ 3.5 Unassigned Enhancements/Bugs:

[yocto] Minutes: Yocto Project Weekly Triage Meeting 11/25/2021

2021-11-25 Thread Trevor Gamblin
*Wiki: *https://wiki.yoctoproject.org/wiki/Bug_Triage *Attendees: *Alexandre, Bruce, Michael, Stephen, Randy, Richard, Tim, Trevor *ARs:* N/A *Notes:* No meeting next week - YP Summit *Medium+ 3.5 Unassigned Enhancements/Bugs: *73 (No change) *Medium+ 3.99 Unassigned Enhancements/Bugs:

[yocto] Minutes: Yocto Project Weekly Triage Meeting 11/18/2021

2021-11-18 Thread Trevor Gamblin
*Wiki: *https://wiki.yoctoproject.org/wiki/Bug_Triage *Attendees:* Alexandre, Armin, Daiane, Jon, Randy, Richard, Ross, Saul, Stephen, Steve, Tim, Trevor *ARs:* - Richard to determine what infrastructure support/changes are needed for i586 tuning (see YP #14632) *Notes:* N/A *Medium+

[yocto] Minutes: Yocto Project Weekly Triage Meeting 11/11/2021

2021-11-11 Thread Trevor Gamblin
*Wiki: *https://wiki.yoctoproject.org/wiki/Bug_Triage *Attendees:* Alexandre, Armin, Bruce, Randy, Richard, Ross, Saul, Stephen, Steve, Tim, Trevor *ARs:* N/A *Notes:* N/A *Medium+ 3.5 Unassigned Enhancements/Bugs: *73 (Last week 79) *Medium+ 3.99 Unassigned Enhancements/Bugs: *39**(No

[yocto] Minutes: Yocto Project Weekly Triage Meeting 11/4/2021

2021-11-04 Thread Trevor Gamblin
*Wiki: *https://wiki.yoctoproject.org/wiki/Bug_Triage *Attendees:* Alexandre, Armin, Bruce, Jon, Joshua, Kiran, Michael, Randy, Richard, Stephen, Steve, Tim, Trevor *ARs:* N/A ** *Notes:* N/A *Medium+ 3.5 Unassigned Enhancements/Bugs: *79 (Last week 81) *Medium+ 3.99 Unassigned

[yocto] [yocto-autobuilder2][PATCH] builders.py: subtract builder weight instead of add

2021-10-29 Thread Trevor Gamblin
Signed-off-by: Trevor Gamblin --- builders.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/builders.py b/builders.py index f94d1dd..fc92e36 100644 --- a/builders.py +++ b/builders.py @@ -168,7 +168,7 @@ def prioritizeBuilders(master, builders): time = max_time

[yocto] [yocto-autobuilder2][PATCH] builders.py: fix bonus time calculation

2021-10-29 Thread Trevor Gamblin
Modify the builder_bonuses calculation so that it provides variable bonus time based on the builder, rather than a constant value. Signed-off-by: Trevor Gamblin --- builders.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/builders.py b/builders.py index 5773950..f94d1dd

[yocto] [yocto-autobuilder2][PATCH] builders.py: Add canStartBuild disk space check

2021-10-29 Thread Trevor Gamblin
, we want the stdout of the command so that we can calculate the amount of disk space, rather than just relying on the remote command's return code. Docs: https://docs.buildbot.net/latest/manual/customization.html#canstartbuild-functions [YOCTO #14591] Signed-off-by: Trevor Gamblin

[yocto] Minutes: Yocto Project Weekly Triage Meeting 10/28/2021

2021-10-28 Thread Trevor Gamblin
*Wiki: *https://wiki.yoctoproject.org/wiki/Bug_Triage *Attendees:* Alexandre, Anuj, Armin, Joshua, Kiran, Randy, Richard, Saul, Stephen, Steve, Tim, Trevor *ARs:* - Everyone to review Old Milestone bugs and move to 3.5 milestones as necessary - Richard to add guidance to Bug # 14613

[yocto] Minutes: Yocto Project Weekly Triage Meeting 10/21/2021

2021-10-21 Thread Trevor Gamblin
*Wiki: *https://wiki.yoctoproject.org/wiki/Bug_Triage *Attendees:* Alexandre, Anuj, Bruce, Daiane, Joshua, Kiran, Michael, Randy, Richard, Ross, Saul, Stephen, Steve, Tim, Trevor *ARs:* *- *Daiane to take ownership 14605 when a Bugzilla account is sorted out - Randy to move 3.4

[yocto] Minutes: Yocto Project Weekly Triage Meeting 10/7/2021

2021-10-07 Thread Trevor Gamblin
*Wiki: *https://wiki.yoctoproject.org/wiki/Bug_Triage *Attendees:* Diane, Joshua, Kiran, Michael, Randy, Richard, Ross, Saul, Stephen, Steve, Tim, Trevor *ARs:* *- *David Reyna to update Future/3.99 Toaster bugs ** *Notes:* * * - Stephen and Trevor will both be unavailable for the October

[yocto] Minutes: Yocto Project Weekly Triage Meeting 9/30/2021

2021-09-30 Thread Trevor Gamblin
*Wiki: *https://wiki.yoctoproject.org/wiki/Bug_Triage *Attendees:* Alex, Diane, Joshua, Michael, Oleksiy, Randy, Richard, Ross, Saul, Stephen, Steve, Tim, Trevor *ARs:* - Trevor to revisit Make parallelization as part of look at bugs 14564 and 14565 (originally encountered errors such as

[yocto] Minutes: Yocto Project Weekly Triage Meeting 9/23/2021

2021-09-23 Thread Trevor Gamblin
*Wiki: *https://wiki.yoctoproject.org/wiki/Bug_Triage *Attendees:* Alex, Bruce, Kiran, Randy, Richard, Ross, Saul, Stephen, Steve, Trevor *ARs:* - Steve to review failure logs for 14557 and post any that might be useful - Richard to have a look at bug 11801 *Notes:* * * - (carried over)

Re: [yocto] Minutes: Yocto Project Weekly Triage Meeting 9/16/2021

2021-09-17 Thread Trevor Gamblin
On 2021-09-16 11:33 a.m., Trevor Gamblin wrote: On 2021-09-16 11:33 a.m., Trevor Gamblin wrote: *Wiki: *https://wiki.yoctoproject.org/wiki/Bug_Triage *Attendees:* Alex, Diane, Jon, Joshua, Michael, Richard, Ross, Saul, Stephen, Steve, Tim, Trevor *ARs:* - Trevor to move old AB defects

Re: [yocto] Minutes: Yocto Project Weekly Triage Meeting 9/16/2021

2021-09-16 Thread Trevor Gamblin
On 2021-09-16 11:33 a.m., Trevor Gamblin wrote: *Wiki: *https://wiki.yoctoproject.org/wiki/Bug_Triage *Attendees:* Alex, Diane, Jon, Joshua, Michael, Richard, Ross, Saul, Stephen, Steve, Tim, Trevor *ARs:* - Trevor to move old AB defects to M4 after call - Trevor to ping WR folks about

[yocto] Minutes: Yocto Project Weekly Triage Meeting 9/16/2021

2021-09-16 Thread Trevor Gamblin
*Wiki: *https://wiki.yoctoproject.org/wiki/Bug_Triage *Attendees:* Alex, Diane, Jon, Joshua, Michael, Richard, Ross, Saul, Stephen, Steve, Tim, Trevor *ARs:* - Trevor to move old AB defects to M4 after call - Trevor to ping WR folks about moving Old Milestone bugs - Richard to add a

[yocto] Minutes: Yocto Project Weekly Triage Meeting 9/9/2021

2021-09-09 Thread Trevor Gamblin
*Wiki: *https://wiki.yoctoproject.org/wiki/Bug_Triage *Attendees:* Alex, Bruce, Diane, Kiran, Randy, Richard, Ross, Saul, Stephen, Steve, Tim, Trevor *ARs:* - Randy to move AB defects to M4 after call - Tim to file a bug about improving ptest runner timeout warnings - Stephen to handle 3.4

[yocto] [yocto-autobuilder2][PATCH] add prioritizeBuilders

2021-09-09 Thread Trevor Gamblin
so that oe-selftest-ubuntu is assigned to that worker first. Signed-off-by: Trevor Gamblin --- builders.py | 13 + master.cfg | 6 ++ 2 files changed, 19 insertions(+) diff --git a/builders.py b/builders.py index 53c5f0e..94fb561 100644 --- a/builders.py +++ b/builders.

[yocto] Minutes: Yocto Project Weekly Triage Meeting 9/2/2021

2021-09-02 Thread Trevor Gamblin
*Wiki: *https://wiki.yoctoproject.org/wiki/Bug_Triage *Attendees:* Alex, Bruce, Joshua, Randy, Richard, Ross, Saul, Stephen, Steve, Tim, Trevor *ARs:* N/A *Notes:* * * - (carried over) Steve encountered build failures such as the one in

[yocto] Minutes: Yocto Project Weekly Triage Meeting 8/26/2021

2021-08-26 Thread Trevor Gamblin
*Wiki: *https://wiki.yoctoproject.org/wiki/Bug_Triage *Attendees:* Alex, Armin, Bruce, Joshua, Randy, Richard, Saul, Stephen, Steve, Tim, Trevor *ARs:* N/A *Notes:* * * - (carried over) Steve encountered build failures such as the one in

[yocto] Minutes: Yocto Project Weekly Triage Meeting 8/19/2021

2021-08-19 Thread Trevor Gamblin
*Wiki: *https://wiki.yoctoproject.org/wiki/Bug_Triage *Attendees:* Alex, Armin, Bruce, Diane, Joshua, Randy, Richard, Ross, Saul, Stephen, Steve, Tim, Tony, TrevorG *ARs:* N/A *Notes:* * * - (carried over) Steve encountered build failures such as the one in

[yocto] Minutes: Yocto Project Weekly Triage Meeting 8/5/2021

2021-08-05 Thread Trevor Gamblin
*Wiki: *https://wiki.yoctoproject.org/wiki/Bug_Triage *Attendees:* Alex, Diane, Joshua, MichaelO, Randy, Richard, Saul, Stephen, Steve, Tim, Tony, TrevorG *ARs:* N/A *Notes:* * * - (carried over) Steve encountered build failures such as the one in

[yocto] Minutes: Yocto Project Weekly Triage Meeting 7/29/2021

2021-07-29 Thread Trevor Gamblin
*Wiki: *https://wiki.yoctoproject.org/wiki/Bug_Triage *Attendees:* Diane, Joshua, MichaelO, Randy, Richard, Stephen, Steve, Tim, Tony, TrevorG *ARs:* - Tim to talk with Intel team about bug 14491 ([QA 3.4_M2.rc1] - stap.StapTest.test_stap failure) - Randy to discuss bug (save which recipe

[yocto] [yocto-autobuilder-helper][hardknott][PATCH] config.json: track system load with PARALLEL_MAKE

2021-07-22 Thread Trevor Gamblin
rget load percentage needs to be adjusted. Signed-off-by: Trevor Gamblin --- config.json | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/config.json b/config.json index 110b0d9..5689cb9 100644 --- a/config.json +++ b/config.json @@ -43,7 +43,7 @@

[yocto] [yocto-autobuilder-helper][gatesgarth][PATCH] config.json: track system load with PARALLEL_MAKE

2021-07-22 Thread Trevor Gamblin
rget load percentage needs to be adjusted. Signed-off-by: Trevor Gamblin --- config.json | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/config.json b/config.json index 5dda653..8a4343a 100644 --- a/config.json +++ b/config.json @@ -43,7 +43,7 @@

[yocto] [yocto-autobuilder-helper][dunfell][PATCH] config.json: track system load with PARALLEL_MAKE

2021-07-22 Thread Trevor Gamblin
oad percentage needs to be adjusted. Signed-off-by: Trevor Gamblin --- config.json | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/config.json b/config.json index 3cff363..8323864 100644 --- a/config.json +++ b/config.json @@ -43,7 +43,7 @@

[yocto] [yocto-autobuilder-helper][PATCH] config.json: set max load in PARALLEL_MAKE

2021-07-15 Thread Trevor Gamblin
rops below that limit, or until all other jobs are finished before starting additional jobs. Since most autobuilder machines have 56 cores, this should help keep the system from being overloaded during builds. Reference: https://www.gnu.org/software/make/manual/html_node/Parallel.html Signed-off-

Re: [yocto] [yocto-autobuilder-helper][PATCH] config.json: track system load with PARALLEL_MAKE

2021-07-12 Thread Trevor Gamblin
confirmed... Alex On Mon, 12 Jul 2021 at 14:11, Trevor Gamblin mailto:trevor.gamb...@windriver.com>> wrote: This adds the "-l" option to PARALLEL_MAKE in config.json with an initial testing value of 100 (100% system load). This option is supported by both Make a

Re: [yocto] Yocto Autobuilder: Latency Monitor and AB-INT - Meeting notes: July 8, 2021

2021-07-12 Thread Trevor Gamblin
On 2021-07-08 9:53 a.m., Randy MacLeod wrote: YP AB Intermittent failures meeting === July 1, 2021, 9 AM ET https://windriver.zoom.us/j/3696693975 Attendees:  Tony, Richard, Trevor, Randy Summary: The autobuilder RCU hang is still fixed ;-),   

[yocto] [yocto-autobuilder-helper][PATCH] config.json: track system load with PARALLEL_MAKE

2021-07-12 Thread Trevor Gamblin
erceived system load in the do_compile logs, and since this option is not supported by Ninja, also add EXTRA_OEMAKE to the EXTRAVARS so that we can determine if the target load percentage needs to be adjusted. Signed-off-by: Trevor Gamblin --- config.json | 5 +++-- 1 file changed, 3 insertions(+), 2 dele

Re: [yocto] bitbake controlling memory use

2021-06-10 Thread Trevor Gamblin
On 2021-06-10 5:22 a.m., Ferry Toth wrote: **[Please note: This e-mail is from an EXTERNAL e-mail address] Hi Trevor, Gmane is really messing things up here, sorry about that. I need to create a new thread I'm afraid. I'd like to your reworked patch. But note, I reworked it too (but

Re: [yocto] bitbake controlling memory use

2021-06-08 Thread Trevor Gamblin
On 2021-06-07 3:27 p.m., Gmane Admin wrote: [Please note: This e-mail is from an EXTERNAL e-mail address] Op 05-06-2021 om 15:35 schreef Gmane Admin: Op 14-04-2021 om 06:59 schreef Richard Purdie: On Tue, 2021-04-13 at 21:14 -0400, Randy MacLeod wrote: On 2021-04-11 12:19 p.m., Alexander

Re: [yocto] bitbake controlling memory use

2021-06-08 Thread Trevor Gamblin
On 2021-06-05 9:35 a.m., Gmane Admin wrote: [Please note: This e-mail is from an EXTERNAL e-mail address] Op 14-04-2021 om 06:59 schreef Richard Purdie: On Tue, 2021-04-13 at 21:14 -0400, Randy MacLeod wrote: On 2021-04-11 12:19 p.m., Alexander Kanavin wrote: make already has -l option for

[yocto] [yocto-autobuilder2][PATCH v2] README-Guide.md: Add multi-node content, extra config info

2021-04-06 Thread Trevor Gamblin
have LANG set in their bash profile Signed-off-by: Trevor Gamblin --- README-Guide.md | 108 +++- 1 file changed, 106 insertions(+), 2 deletions(-) diff --git a/README-Guide.md b/README-Guide.md index 21dd7c1..832996f 100644 --- a/README-Guide.md +++ b

Re: [yocto] [yocto-autobuilder2][PATCH] README-Guide.md: Add multi-node content, extra config info

2021-04-06 Thread Trevor Gamblin
On 2021-04-06 9:44 a.m., Trevor Gamblin wrote: The instructions in README-Guide.md are a good starting point, but there are some additional guidelines in this patch for setting up worker nodes which may be useful to others who want to run their own Autobuilder instance. Specifically, it adds

[yocto] [yocto-autobuilder2][PATCH] README-Guide.md: Add multi-node content, extra config info

2021-04-06 Thread Trevor Gamblin
have LANG set in their bash profile Signed-off-by: Trevor Gamblin --- README-Guide.md | 86 - 1 file changed, 85 insertions(+), 1 deletion(-) diff --git a/README-Guide.md b/README-Guide.md index 21dd7c1..d976fdd 100644 --- a/README-Guide.md +++ b

  1   2   >