summaryrefslogtreecommitdiffstats
path: root/bin/reproducible_html_dashboard.sh
diff options
context:
space:
mode:
authorHolger Levsen <holger@layer-acht.org>2016-05-20 17:00:55 +0200
committerHolger Levsen <holger@layer-acht.org>2016-05-20 17:00:55 +0200
commit3dd1c33a0cb1fe34630ab699c3bfae8ab6962af8 (patch)
tree574428b5638e49c20edeabeac167dab7186764e1 /bin/reproducible_html_dashboard.sh
parente0a392ddf8b3765e510b23ebd6770e12ff348515 (diff)
downloadjenkins.debian.net-3dd1c33a0cb1fe34630ab699c3bfae8ab6962af8.tar.xz
reproducible debian: new page, 'variations tested', split off from dashboard
Diffstat (limited to 'bin/reproducible_html_dashboard.sh')
-rwxr-xr-xbin/reproducible_html_dashboard.sh21
1 files changed, 18 insertions, 3 deletions
diff --git a/bin/reproducible_html_dashboard.sh b/bin/reproducible_html_dashboard.sh
index 43c8b39c..b3c01394 100755
--- a/bin/reproducible_html_dashboard.sh
+++ b/bin/reproducible_html_dashboard.sh
@@ -551,8 +551,6 @@ create_dashboard_page() {
fi
done
write_page "</p>"
- # explain setup
- write_variation_table debian
# link to index_breakages
write_page "<p style=\"clear:both;\">"
write_page "<br />There are <a href=\"$BASEURL/index_breakages.html\">some problems in this test setup itself</a> too. And there is <a href=\"https://jenkins.debian.net/userContent/about.html#_reproducible_builds_jobs\">documentation</a> too, in case you missed the link at the top. Feedback is very much appreciated.</p>"
@@ -595,6 +593,22 @@ create_performance_page() {
}
#
+# create variations page
+#
+create_variations_page() {
+ VIEW=variations
+ PAGE=index_${VIEW}.html
+ echo "$(date -u) - starting to write $PAGE page."
+ write_page_header $VIEW "Variations introduced when testing Debian packages"
+ # explain setup
+ write_variation_table debian
+ write_page "<p style=\"clear:both;\">"
+ write_page "</p>"
+ write_page_footer
+ publish_page
+}
+
+#
# main
#
SUITE="unstable"
@@ -609,6 +623,7 @@ for ARCH in ${ARCHS} ; do
done
ARCH="amd64"
SUITE="unstable"
-create_dashboard_page
create_performance_page
+create_variations_page
+create_dashboard_page
rm -f $DUMMY_FILE >/dev/null