diff options
author | Holger Levsen <holger@layer-acht.org> | 2015-03-03 00:21:42 +0100 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2015-03-03 00:21:42 +0100 |
commit | 5de33e2cf6dde51b401d9a9f675dec01312b9247 (patch) | |
tree | 3851b894b32a3a978a5b068aa0d6bf727a5ab6ef | |
parent | 9bc34f2bdfc0a7cbbfe47a0efa02b95568693e41 (diff) | |
download | jenkins.debian.net-5de33e2cf6dde51b401d9a9f675dec01312b9247.tar.xz |
reproducible: add arch independent suite views
-rwxr-xr-x | bin/reproducible_common.sh | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/bin/reproducible_common.sh b/bin/reproducible_common.sh index 4bba38d1..b809720c 100755 --- a/bin/reproducible_common.sh +++ b/bin/reproducible_common.sh @@ -78,6 +78,7 @@ init_html() { ALLSTATES="reproducible FTBR FTBFS 404 not_for_us blacklisted" ALLVIEWS="issues notes no_notes scheduled last_24h last_48h all_abc dd-list pkg_sets suite_stats repo_stats stats" GLOBALVIEWS="issues notes no_notes pkg_sets repo_stats stats" + SUITEVIEWS="dd-list suite_stats" SPOKENTARGET["issues"]="issues" SPOKENTARGET["notes"]="packages with notes" SPOKENTARGET["no_notes"]="packages without notes" @@ -156,12 +157,17 @@ write_page_header() { done for TARGET in $ALLVIEWS ; do SPOKEN_TARGET=${SPOKENTARGET[$TARGET]} - BASEURL="/$SUITE" + BASEURL="/$SUITE/$ARCH" for i in $GLOBALVIEWS ; do if [ "$TARGET" = "$i" ] ; then BASEURL="" fi done + for i in ${SUITEVIEWS} ; do + if [ "$TARGET" = "$i" ] ; then + BASEURL="/$SUITE" + fi + done if [ "$TARGET" = "pkg_sets" ] && [ "$SUITE" = "experimental" ] ; then # no pkg_sets are tested in experimental continue |