[Qa-jenkins-scm] [jenkins.debian.net] 01/01: reproducible: also show the sum for all usertagged bugs excluding those tagged ftbfs
Holger Levsen
holger at moszumanska.debian.org
Thu Nov 26 10:13:59 UTC 2015
This is an automated email from the git hooks/post-receive script.
holger pushed a commit to branch master
in repository jenkins.debian.net.
commit e05ab9644b369d6a7790048079bd29a85a72442c
Author: Holger Levsen <holger at layer-acht.org>
Date: Thu Nov 26 11:13:51 2015 +0100
reproducible: also show the sum for all usertagged bugs excluding those tagged ftbfs
---
bin/reproducible_html_dashboard.sh | 9 ++++++++-
1 file changed, 8 insertions(+), 1 deletion(-)
diff --git a/bin/reproducible_html_dashboard.sh b/bin/reproducible_html_dashboard.sh
index 594e318..5739537 100755
--- a/bin/reproducible_html_dashboard.sh
+++ b/bin/reproducible_html_dashboard.sh
@@ -267,7 +267,14 @@ write_usertag_table() {
let "TTOTAL=TTOTAL+TOTAL"
fi
done
- write_page "<tr><td>Total number of <a href=\"https://wiki.debian.org/ReproducibleBuilds/Contribute#How_to_report_bugs\">usertags related to reproducible builds</a> on $DATE<br />(this is not the number of bugs as bugs can have several tags)</td><td>$TOPEN</td><td>$TDONE</td><td>$TTOTAL</td></tr>"
+ # now subtract the ftbfs bugs again (=the last value)
+ # as those others are the ones we really care about
+ let "REPRODUCIBLE_TOPEN=TOPEN-VALUE"
+ let "REPRODUCIBLE_TDONE=TDONE-VALUE"
+ let "REPRODUCIBLE_TTOTAL=REPRODUCIBLE_TOPEN+REPRODUCIBLE_TDONE"
+ write_page "<tr><td>Sum of <a href=\"https://wiki.debian.org/ReproducibleBuilds/Contribute#How_to_report_bugs\">bugs with usertags related to reproducible builds</a>, excluding those tagged 'ftbfs'</td><td>$REPRODUCIBLE_TOPEN</td><td>$REPRODUCIBLE_TDONE</td><td>$REPRODUCIBLE_TTOTAL</td></tr>"
+ write_page "<tr><td>Sum of all bugs with usertags related to reproducible builds</td><td>$TOPEN</td><td>$TDONE</td><td>$TTOTAL</td></tr>"
+ write_page "<tr><td colspan=\"4\">Stats are from $DATE.<br />The sums of usertags shown are not equivalent to the sum of bugs as a single bug can have several tags.</td></tr>"
write_page "</table>"
fi
}
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/qa/jenkins.debian.net.git
More information about the Qa-jenkins-scm
mailing list