diff options
author | Holger Levsen <holger@layer-acht.org> | 2016-05-22 19:18:59 +0200 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2016-05-22 19:18:59 +0200 |
commit | 3d052744116ca8e28a12c1bde63716531da68da8 (patch) | |
tree | 365cfaaa9ac6268f78771890cf31809e5480fd1d | |
parent | 361d04e70ec83ced8d7d8b17e0b778176d687316 (diff) | |
download | jenkins.debian.net-3d052744116ca8e28a12c1bde63716531da68da8.tar.xz |
reproducible debian: dashboard+variation pages: default links to unstable/amd64
-rwxr-xr-x | bin/reproducible_html_dashboard.sh | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/bin/reproducible_html_dashboard.sh b/bin/reproducible_html_dashboard.sh index b3c01394..0897f643 100755 --- a/bin/reproducible_html_dashboard.sh +++ b/bin/reproducible_html_dashboard.sh @@ -465,6 +465,8 @@ write_meta_pkg_graphs_links () { create_dashboard_page() { VIEW=dashboard PAGE=index_${VIEW}.html + SUITE="unstable" + ARCH="amd64" echo "$(date -u) - starting to write $PAGE page." write_page_header $VIEW "Overview of various statistics about reproducible builds" write_suite_arch_table @@ -566,6 +568,8 @@ create_dashboard_page() { create_performance_page() { VIEW=performance PAGE=index_${VIEW}.html + ARCH="amd64" + SUITE="unstable" echo "$(date -u) - starting to write $PAGE page." write_page_header $VIEW "Build node performance stats" # arch performance stats @@ -598,6 +602,8 @@ create_performance_page() { create_variations_page() { VIEW=variations PAGE=index_${VIEW}.html + ARCH="amd64" + SUITE="unstable" echo "$(date -u) - starting to write $PAGE page." write_page_header $VIEW "Variations introduced when testing Debian packages" # explain setup @@ -621,8 +627,6 @@ for ARCH in ${ARCHS} ; do create_suite_arch_stats_page done done -ARCH="amd64" -SUITE="unstable" create_performance_page create_variations_page create_dashboard_page |