From patchwork Wed Mar 5 16:44:42 2025 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Ross Burton X-Patchwork-Id: 58373 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from aws-us-west-2-korg-lkml-1.web.codeaurora.org (localhost.localdomain [127.0.0.1]) by smtp.lore.kernel.org (Postfix) with ESMTP id 610DCC19F32 for ; Wed, 5 Mar 2025 16:44:55 +0000 (UTC) Received: from foss.arm.com (foss.arm.com [217.140.110.172]) by mx.groups.io with SMTP id smtpd.web11.18109.1741193089290371633 for ; Wed, 05 Mar 2025 08:44:49 -0800 Authentication-Results: mx.groups.io; dkim=none (message not signed); spf=pass (domain: arm.com, ip: 217.140.110.172, mailfrom: ross.burton@arm.com) Received: from usa-sjc-imap-foss1.foss.arm.com (unknown [10.121.207.14]) by usa-sjc-mx-foss1.foss.arm.com (Postfix) with ESMTP id DBA491007 for ; Wed, 5 Mar 2025 08:45:01 -0800 (PST) Received: from cesw-amp-gbt-1s-m12830-04.lab.cambridge.arm.com (usa-sjc-imap-foss1.foss.arm.com [10.121.207.14]) by usa-sjc-imap-foss1.foss.arm.com (Postfix) with ESMTPA id 403043F5A1 for ; Wed, 5 Mar 2025 08:44:48 -0800 (PST) From: Ross Burton To: yocto-patches@lists.yoctoproject.org Subject: [PATCH][yocto-autobuilder-helper 1/2] dashboard: add new bug triage page Date: Wed, 5 Mar 2025 16:44:42 +0000 Message-ID: <20250305164443.3080640-1-ross.burton@arm.com> X-Mailer: git-send-email 2.43.0 MIME-Version: 1.0 List-Id: X-Webhook-Received: from li982-79.members.linode.com [45.33.32.79] by aws-us-west-2-korg-lkml-1.web.codeaurora.org with HTTPS for ; Wed, 05 Mar 2025 16:44:55 -0000 X-Groupsio-URL: https://lists.yoctoproject.org/g/yocto-patches/message/1157 Add a replacement for the the existing Bug Triage page on the wiki[1]. This uses client-side JavaScript to parse the releases.json and query Bugzilla, so shouldn't need updating very often. [1] https://wiki.yoctoproject.org/wiki/Bug_Triage Signed-off-by: Ross Burton --- scripts/dashboard/bugtriage/index.html | 402 +++++++++++++++++++++++++ scripts/dashboard/index.html | 4 +- scripts/run-dashboard-index | 3 +- 3 files changed, 406 insertions(+), 3 deletions(-) create mode 100644 scripts/dashboard/bugtriage/index.html diff --git a/scripts/dashboard/bugtriage/index.html b/scripts/dashboard/bugtriage/index.html new file mode 100644 index 00000000..161df2a5 --- /dev/null +++ b/scripts/dashboard/bugtriage/index.html @@ -0,0 +1,402 @@ + + + + + + + Bug Triage + + + + + + + + +
+
+

+ The outcome of the bug triage meeting should be that all bugs have an + owner, a target milestone, and a priority. +

+

+ The meeting is held every Thursday at 07:30 Pacific Time (typically + 15:30 GMT or 16:30 CET, but be aware of daylight saving shifts). The + meeting is held on Zoom, join with either the direct + link or use the Meeting ID 454-367-603 and password + 277925. +

+

+ The call facilitator is Stephen Jolley <sjolley.yp.pm@gmail.com>. The + facilitator's job is to ensure the agenda is kept to, without ratholing + on any particular bug, and keeping to the time slot. +

+ +
+

Security-related

+

+ View security-related bugs in Bugzilla. +

+

+ Security issues a need to be viewed directly in Bugzilla as they are + only visible to users with sufficient permissions. +

+
+ +
+

Unprioritised refresh

+

+ Bugs without a priority, that need a priority, target milestone, and owner assigned. +

+
+
+ +
+

High refresh

+

+ All open high-priority bugs. +

+
+
+ +
+

Autobuilder Intermittent refresh

+

+ Bugs which are tagged as tracking intermittent failures on the + autobuilder. A graphical + view is also available. +

+
+
+ +
+

Reopened refresh

+

+ Bugs that have been reopened. The owner should be reviewed and the bug + moved to another state. +

+
+
+ +
+

Need Info refresh

+

+ All bugs that are in the NEEDINFO state, and should be reviewed to + identify if the information has been provided and the bug should be + moved to another state. +

+
+
+ +
+

Inactive refresh

+

+ All open bugs that haven't been altered in two years. +

+
+
+ +
+

Old Milestone refresh

+

+ All open bugs that are targetted for a milestone in the past: they + should be closed or moved to a future milestone. +

+
+
+ +
+

Potential Newcomer refresh

+

+ All open bugs which have been tagged as being potentially good for + newcomers to the project who want to make their first contribution. +

+
+
+
+ + +
+ + + + + + diff --git a/scripts/dashboard/index.html b/scripts/dashboard/index.html index 73989ee6..1d7830fa 100644 --- a/scripts/dashboard/index.html +++ b/scripts/dashboard/index.html @@ -29,7 +29,9 @@ font-family: Tahoma, Verdana, Arial, sans-serif; }

Autobuilder unreleased build output +
+
+Bug Triage

-

diff --git a/scripts/run-dashboard-index b/scripts/run-dashboard-index index 47c5e9a7..b898c9b9 100755 --- a/scripts/run-dashboard-index +++ b/scripts/run-dashboard-index @@ -18,5 +18,4 @@ $scriptdir/layer-parser.py rsync -irlp --checksum --ignore-times releases.json docs@docs.yoctoproject.org:dashboard/ rsync -irlp --checksum --ignore-times parsed-layers.json docs@docs.yoctoproject.org:dashboard/ -rsync -irlp --checksum --ignore-times $scriptdir/dashboard/index.html docs@docs.yoctoproject.org:dashboard/ - +rsync -irlp --checksum --ignore-times $scriptdir/dashboard/ docs@docs.yoctoproject.org:dashboard/ From patchwork Wed Mar 5 16:44:43 2025 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Ross Burton X-Patchwork-Id: 58372 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from aws-us-west-2-korg-lkml-1.web.codeaurora.org (localhost.localdomain [127.0.0.1]) by smtp.lore.kernel.org (Postfix) with ESMTP id 61FD4C282DE for ; Wed, 5 Mar 2025 16:44:55 +0000 (UTC) Received: from foss.arm.com (foss.arm.com [217.140.110.172]) by mx.groups.io with SMTP id smtpd.web10.17935.1741193089560981556 for ; Wed, 05 Mar 2025 08:44:49 -0800 Authentication-Results: mx.groups.io; dkim=none (message not signed); spf=pass (domain: arm.com, ip: 217.140.110.172, mailfrom: ross.burton@arm.com) Received: from usa-sjc-imap-foss1.foss.arm.com (unknown [10.121.207.14]) by usa-sjc-mx-foss1.foss.arm.com (Postfix) with ESMTP id 802B3FEC for ; Wed, 5 Mar 2025 08:45:02 -0800 (PST) Received: from cesw-amp-gbt-1s-m12830-04.lab.cambridge.arm.com (usa-sjc-imap-foss1.foss.arm.com [10.121.207.14]) by usa-sjc-imap-foss1.foss.arm.com (Postfix) with ESMTPA id DB0923F5A1 for ; Wed, 5 Mar 2025 08:44:48 -0800 (PST) From: Ross Burton To: yocto-patches@lists.yoctoproject.org Subject: [PATCH][yocto-autobuilder-helper 2/2] scripts/run-dashboard-index: add ability to override the destination for testing Date: Wed, 5 Mar 2025 16:44:43 +0000 Message-ID: <20250305164443.3080640-2-ross.burton@arm.com> X-Mailer: git-send-email 2.43.0 In-Reply-To: <20250305164443.3080640-1-ross.burton@arm.com> References: <20250305164443.3080640-1-ross.burton@arm.com> MIME-Version: 1.0 List-Id: X-Webhook-Received: from li982-79.members.linode.com [45.33.32.79] by aws-us-west-2-korg-lkml-1.web.codeaurora.org with HTTPS for ; Wed, 05 Mar 2025 16:44:55 -0000 X-Groupsio-URL: https://lists.yoctoproject.org/g/yocto-patches/message/1158 Signed-off-by: Ross Burton --- scripts/run-dashboard-index | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/scripts/run-dashboard-index b/scripts/run-dashboard-index index b898c9b9..129493e1 100755 --- a/scripts/run-dashboard-index +++ b/scripts/run-dashboard-index @@ -2,7 +2,8 @@ # # SPDX-License-Identifier: GPL-2.0-only # -# Called with $1 as the build directory +# Called with $1 as the build directory. +# Set DEST in the environment to override the destination for testing purposes. set -e set -u @@ -12,10 +13,12 @@ set -x builddir=$(realpath "$1") scriptdir="$(dirname "$(readlink -f "${BASH_SOURCE[0]}")")" +dest=${DEST:-docs@docs.yoctoproject.org:dashboard/} + cd $builddir $scriptdir/release-parser.py $scriptdir/layer-parser.py -rsync -irlp --checksum --ignore-times releases.json docs@docs.yoctoproject.org:dashboard/ -rsync -irlp --checksum --ignore-times parsed-layers.json docs@docs.yoctoproject.org:dashboard/ -rsync -irlp --checksum --ignore-times $scriptdir/dashboard/ docs@docs.yoctoproject.org:dashboard/ +rsync -irlp --checksum --ignore-times releases.json ${dest} +rsync -irlp --checksum --ignore-times parsed-layers.json ${dest} +rsync -irlp --checksum --ignore-times $scriptdir/dashboard/ ${dest}