diff options
author | Holger Levsen <holger@layer-acht.org> | 2015-03-12 11:45:55 +0100 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2015-03-12 11:45:55 +0100 |
commit | 8c8c4e8fdc7e8426a93bf77162c4ca60262515aa (patch) | |
tree | 8dbf361dcf0317021a9d8f9dfdd4a2fa8a9167ed /bin | |
parent | cf2ef04908d9deca7e74144ecb531705b7f8c9cc (diff) | |
download | jenkins.debian.net-8c8c4e8fdc7e8426a93bf77162c4ca60262515aa.tar.xz |
reproducible: include total number of sources per suite
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/reproducible_html_graphs.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/bin/reproducible_html_graphs.sh b/bin/reproducible_html_graphs.sh index 8933f920..21aaac67 100755 --- a/bin/reproducible_html_graphs.sh +++ b/bin/reproducible_html_graphs.sh @@ -352,7 +352,7 @@ create_suite_stats_page() { MAINLABEL[0]="Reproducibility status for packages in '$SUITE'" MAINLABEL[2]="Age in days of oldest build in '$SUITE'" echo "$(date) - starting to write $PAGE page." - write_page_header $VIEW "Overview of various statistics about reproducible builds for $SUITE" + write_page_header $VIEW "Overview of reproducible builds for packages in $SUITE" if [ $(echo $PERCENT_TOTAL/1|bc) -lt 98 ] ; then write_page "<p>$COUNT_TOTAL packages have been attempted to be build so far, that's $PERCENT_TOTAL% of $AMOUNT source packages in Debian $SUITE currently.</p>" fi @@ -490,10 +490,10 @@ create_main_stats_page() { done write_page "</p><p>" # write suite table - write_page "<table class=\"main\"><tr><th>Suite on $DATE</th><th>reproducible packages</th><th>unreproducible packages</th><th>packages failing to build</th><th>other packages</th></tr>" + write_page "<table class=\"main\"><tr><th>suite</th><th>sources in total on $DATE</th><th>reproducible packages</th><th>unreproducible packages</th><th>packages failing to build</th><th>other packages</th></tr>" for SUITE in $SUITES ; do gather_suite_stats - write_page "<tr><td>$SUITE</td><td>$COUNT_GOOD / $PERCENT_GOOD%</td><td>$COUNT_BAD / $PERCENT_BAD%</td><td>$COUNT_UGLY / $PERCENT_UGLY%</td><td>$COUNT_OTHER / $PERCENT_OTHER%</td></tr>" + write_page "<tr><td>$SUITE</td><td>$AMOUNT</td><td>$COUNT_GOOD / $PERCENT_GOOD%</td><td>$COUNT_BAD / $PERCENT_BAD%</td><td>$COUNT_UGLY / $PERCENT_UGLY%</td><td>$COUNT_OTHER / $PERCENT_OTHER%</td></tr>" done write_page "</table>" # write inventory table |