diff options
author | Holger Levsen <holger@layer-acht.org> | 2014-10-07 19:27:26 +0200 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2014-10-07 19:27:26 +0200 |
commit | d5d207bd70d281acea0f24868dec1b3fe68fcca4 (patch) | |
tree | 7bd1e88e8b0ea08d4d102a3604328cbb945fc0c7 | |
parent | 6aa1e199b50a8bf2debcb83929a479a17b20d533 (diff) | |
download | jenkins.debian.net-d5d207bd70d281acea0f24868dec1b3fe68fcca4.tar.xz |
reproducible: fix typos
-rwxr-xr-x | bin/reproducible_stats.sh | 25 |
1 files changed, 14 insertions, 11 deletions
diff --git a/bin/reproducible_stats.sh b/bin/reproducible_stats.sh index f330a7bb..8e2510f3 100755 --- a/bin/reproducible_stats.sh +++ b/bin/reproducible_stats.sh @@ -30,7 +30,7 @@ GOOD["last_48h"]=$(sqlite3 -init $INIT $PACKAGES_DB "SELECT name FROM source_pac COUNT_GOOD=$(sqlite3 -init $INIT $PACKAGES_DB "SELECT COUNT(name) FROM source_packages WHERE status = \"reproducible\"") BAD["all"]=$(sqlite3 -init $INIT $PACKAGES_DB "SELECT name FROM source_packages WHERE status = \"unreproducible\" ORDER BY build_date DESC" | xargs echo) BAD["last_24h"]=$(sqlite3 -init $INIT $PACKAGES_DB "SELECT name FROM source_packages WHERE status = \"unreproducible\" $LAST24 ORDER BY build_date DESC" | xargs echo) -BAD["last_24h"]=$(sqlite3 -init $INIT $PACKAGES_DB "SELECT name FROM source_packages WHERE status = \"unreproducible\" $LAST48 ORDER BY build_date DESC" | xargs echo) +BAD["last_48h"]=$(sqlite3 -init $INIT $PACKAGES_DB "SELECT name FROM source_packages WHERE status = \"unreproducible\" $LAST48 ORDER BY build_date DESC" | xargs echo) COUNT_BAD=$(sqlite3 -init $INIT $PACKAGES_DB "SELECT COUNT(name) FROM source_packages WHERE status = \"unreproducible\"") UGLY["all"]=$(sqlite3 -init $INIT $PACKAGES_DB "SELECT name FROM source_packages WHERE status = \"FTBFS\" ORDER BY build_date DESC" | xargs echo) UGLY["last_24h"]=$(sqlite3 -init $INIT $PACKAGES_DB "SELECT name FROM source_packages WHERE status = \"FTBFS\" $LAST24 ORDER BY build_date DESC" | xargs echo) @@ -165,8 +165,11 @@ for VIEW in $ALLVIEWS ; do write_summary "<meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\" />" write_summary "<link href=\"static/style.css\" type=\"text/css\" rel=\"stylesheet\" /></head>" write_summary "<body><header><h2>Statistics for reproducible builds</h2>" - write_summary "<p>This page is updated every three hours. Results are obtained from <a href=\"$JENKINS_URL/view/reproducible\">several build jobs running on jenkins.debian.net</a>. Thanks to <a href=\"https://www.profitbricks.com\">Profitbricks</a> for donating the virtual machine it's running on!</p>" - write_summary "<p>$COUNT_TOTAL packages attempted to build so far, that's $PERCENT_TOTAL% of $AMOUNT source packages in Debian $SUITE currently. Out of these, $PERCENT_GOOD% were successful, so quite wildly guessing this roughy means about $GUESS_GOOD <a href=\"https://wiki.debian.org/ReproducibleBuilds\">packages should be reproducibly buildable!</a> Join <code>#debian-reproducible</code> on OFTC to get support for making sure your packages build reproducibly too!</p></header>" + if [ "$VIEW" = "$MAINVIEW" ] ; then + write_summary "<p>This page is updated every three hours. Results are obtained from <a href=\"$JENKINS_URL/view/reproducible\">several build jobs running on jenkins.debian.net</a>. Thanks to <a href=\"https://www.profitbricks.com\">Profitbricks</a> for donating the virtual machine it's running on!</p>" + write_summary "<p>$COUNT_TOTAL packages attempted to build so far, that's $PERCENT_TOTAL% of $AMOUNT source packages in Debian $SUITE currently. Out of these, $PERCENT_GOOD% were successful, so quite wildly guessing this roughy means about $GUESS_GOOD <a href=\"https://wiki.debian.org/ReproducibleBuilds\">packages should be reproducibly buildable!</a> Join <code>#debian-reproducible</code> on OFTC to get support for making sure your packages build reproducibly too!</p>" + fi + write_summary "</header>" write_summary "<p>$COUNT_BAD packages ($PERCENT_BAD% of $COUNT_TOTAL) failed to built reproducibly: <code>" link_packages ${BAD[$VIEW]} write_summary "</code></p>" @@ -191,12 +194,12 @@ for VIEW in $ALLVIEWS ; do write_summary "<p><pre>$(echo ${BAD[$VIEW]} | dd-list -i) </pre></p>" write_summary "<hr/><p><font size='-1'><a href=\"$JENKINS_URL/userContent/reproducible.html\">Static URL for this page.</a> Last modified: $(date). Copyright 2014 <a href=\"mailto:holger@layer-acht.org\">Holger Levsen</a>, GPL-2 licensed. <a href=\"https://jenkins.debian.net/userContent/about.html\">About jenkins.debian.net</a></font>" write_summary "</p></body></html>" + # publish + cp $SUMMARY /var/lib/jenkins/userContent/ + if [ "$VIEW" = "$MAINVIEW" ] ; then + cp $SUMMARY reproducible.html + fi + rm $SUMMARY done -echo - -# job output -cp $SUMMARY /var/lib/jenkins/userContent/ -if [ "$VIEW" = "$MAINVIEW" ] ; then - cp $SUMMARY reproducible.html -fi -rm $SUMMARY + + |