summaryrefslogtreecommitdiffstats
path: root/bin/reproducible_common.sh
diff options
context:
space:
mode:
authorMattia Rizzolo <mattia@mapreri.org>2015-02-16 22:55:44 +0100
committerMattia Rizzolo <mattia@mapreri.org>2015-02-16 22:55:44 +0100
commit1ddba25150bf1688eccfc11c6ca28b33bdde9927 (patch)
tree3cb694fdab60b2b0e3d98bd1aae17e13cde5bc29 /bin/reproducible_common.sh
parent745e243fc691e729f44906e4842c3a406cc635a4 (diff)
downloadjenkins.debian.net-1ddba25150bf1688eccfc11c6ca28b33bdde9927.tar.xz
reproducible: use the html_indexes.py script to build the scheduled index pages in the scheduler jobs
Diffstat (limited to 'bin/reproducible_common.sh')
-rwxr-xr-xbin/reproducible_common.sh18
1 files changed, 0 insertions, 18 deletions
diff --git a/bin/reproducible_common.sh b/bin/reproducible_common.sh
index e379ad9a..120ea9e2 100755
--- a/bin/reproducible_common.sh
+++ b/bin/reproducible_common.sh
@@ -347,21 +347,3 @@ gather_stats() {
PERCENT_NOTFORUS=$(echo "scale=1 ; ($COUNT_NOTFORUS*100/$COUNT_TOTAL)" | bc)
PERCENT_SOURCELESS=$(echo "scale=1 ; ($COUNT_SOURCELESS*100/$COUNT_TOTAL)" | bc)
}
-
-update_html_schedule() {
- VIEW=scheduled
- PAGE=index_${VIEW}.html
- echo "$(date) - starting to write $PAGE page."
- write_page_header $VIEW "Overview of ${SPOKENTARGET[$VIEW]}"
- gather_schedule_stats
- if [ ${COUNT_NEW_VERSIONS} -ne 0 ] ; then
- write_page "<p>For ${COUNT_NEW_VERSIONS} packages newer versions are available which have not been tested yet.</p>"
- fi
- write_page "<p>${COUNT_SCHEDULED} packages are currently scheduled for testing: <code>"
- force_package_targets $SCHEDULED
- link_packages $SCHEDULED
- write_page "</code></p>"
- write_page_meta_sign
- write_page_footer
- publish_page
-}