yocto-autobuilder-helper/scripts/run-dashboard-index
Ross Burton c8f84c27c7 dashboard: add new bug triage page
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 <ross.burton@arm.com>
2025-03-05 16:40:15 +00:00

576 B
Executable File

#!/bin/bash

SPDX-License-Identifier: GPL-2.0-only

Called with $1 as the build directory

set -e set -u set -o pipefail set -x

builddir=$(realpath "$1") scriptdir="$(dirname "$(readlink -f "${BASH_SOURCE[0]}")")"

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/