diff options
author | Holger Levsen <holger@layer-acht.org> | 2015-12-18 22:01:50 +0100 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2015-12-18 22:01:50 +0100 |
commit | 232a69684d7ca76d13a66990f7e72c0e4f62e6cb (patch) | |
tree | 8321c9aefbbd6f603c12d6050d3428c8903884ac /bin | |
parent | 01e06d4939487f2dab117593d0cd0c8cc76be3f6 (diff) | |
download | jenkins.debian.net-232a69684d7ca76d13a66990f7e72c0e4f62e6cb.tar.xz |
reproducible debian armhf: order graphs differently
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/reproducible_html_dashboard.sh | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/bin/reproducible_html_dashboard.sh b/bin/reproducible_html_dashboard.sh index 599eec75..894f701b 100755 --- a/bin/reproducible_html_dashboard.sh +++ b/bin/reproducible_html_dashboard.sh @@ -496,7 +496,9 @@ create_dashboard_page() { write_suite_table for SUITE in unstable experimental ; do write_page " <a href=\"/$SUITE/index_suite_${ARCH}_stats.html\"><img src=\"/$SUITE/$ARCH/${TABLE[0]}.png\" class=\"halfview\" alt=\"$SUITE/$ARCH stats\"></a>" - write_page " <a href=\"/$SUITE/$ARCH/${TABLE[2]}.png\"><img src=\"/$SUITE/$ARCH/${TABLE[2]}.png\" class=\"halfview\" alt=\"age of oldest reproducible build result in $SUITE/$ARCH\"></a>" + done + for SUITE in unstable experimental ; do + write_page " <a href=\"/$SUITE/$ARCH/${TABLE[2]}.png\"><img src=\"/$SUITE/$ARCH/${TABLE[2]}.png\" class=\"overview\" alt=\"age of oldest reproducible build result in $SUITE/$ARCH\"></a>" done write_page " <a href=\"/${TABLE[1]}_$ARCH.png\"><img src=\"/${TABLE[1]}_$ARCH.png\" class=\"overview\" alt=\"${MAINLABEL[$i]}\"></a>" write_build_performance_stats |