diff options
author | Holger Levsen <holger@layer-acht.org> | 2015-01-01 17:02:20 +0100 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2015-01-01 17:02:20 +0100 |
commit | 0bb7345a4b8ef6980c900daf0aca54eb1dd02b3c (patch) | |
tree | 14c9b76803779e99d34a15304fb5341e571f86d9 /bin | |
parent | 2c2fc315f1eca6157f6d3a8989fd1143fa53969b (diff) | |
download | jenkins.debian.net-0bb7345a4b8ef6980c900daf0aca54eb1dd02b3c.tar.xz |
reproducible: improve comments
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/reproducible_html_graphs.sh | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/bin/reproducible_html_graphs.sh b/bin/reproducible_html_graphs.sh index c642aac4..f4cc6069 100755 --- a/bin/reproducible_html_graphs.sh +++ b/bin/reproducible_html_graphs.sh @@ -50,8 +50,8 @@ if [ -z $RESULT ] ; then sqlite3 -init ${INIT} ${PACKAGES_DB} "INSERT INTO ${TABLE[0]} VALUES (\"$DATE\", \"$SUITE\", $UNTESTED, $GOOD, $BAD, $UGLY, $REST)" sqlite3 -init ${INIT} ${PACKAGES_DB} "INSERT INTO ${TABLE[1]} VALUES (\"$DATE\", \"$SUITE\", $GOOAY, $BAAY, $UGLDAY, $RESDAY)" sqlite3 -init ${INIT} ${PACKAGES_DB} "INSERT INTO ${TABLE[2]} VALUES (\"$DATE\", \"$SUITE\", \"$DIFFG\", \"$DIFFB\", \"$DIFFU\")" - # FIXME: we don't do 2 / stats_builds_age.png yet :/ (also see below) - for i in 0 1 3 4 5 ; do + # FIXME: we don't do 2 / stats_builds_age.png yet :/ (and do 3 later) + for i in 0 1 4 5 ; do # force regeneration of the image touch -d "$DATE 00:00" ${TABLE[$i]}.png done @@ -118,6 +118,7 @@ YLABEL[2]="Age in days" YLABEL[3]="Amount of bugs" YLABEL[4]="Amount of packages" YLABEL[5]="Amount of issues" + redo_png() { echo "${FIELDS[$i]}" > ${TABLE[$i]}.csv # TABLE[3+4+5] don't have a suite column... |