diff options
author | Holger Levsen <holger@layer-acht.org> | 2015-09-08 00:25:03 +0200 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2015-09-08 00:25:03 +0200 |
commit | 4ed2fffec3b2f6ba24b65bdbbc6a8406c6d914ba (patch) | |
tree | c27d7de203f6a71b1e0cb0e914d977f365938881 /bin | |
parent | e110820946de54f8f7bb5097ca4d783cce69a500 (diff) | |
download | jenkins.debian.net-4ed2fffec3b2f6ba24b65bdbbc6a8406c6d914ba.tar.xz |
reproducible: fixup last commit, hi distractions
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/reproducible_html_dashboards.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/reproducible_html_dashboards.sh b/bin/reproducible_html_dashboards.sh index cf010f39..45af7eda 100755 --- a/bin/reproducible_html_dashboards.sh +++ b/bin/reproducible_html_dashboards.sh @@ -264,12 +264,12 @@ write_build_performace_stats() { RESULT=$(sqlite3 -init ${INIT} ${PACKAGES_DB} "SELECT CAST(AVG(r.build_duration) AS INTEGER) FROM results AS r JOIN sources AS s ON r.package_id=s.id WHERE r.build_duration!='' AND r.build_duration!='0' AND r.build_date > datetime('$DATE', '-$TIMESPAN_RAW days') AND s.architecture='$ARCH'") MIN=$(echo $RESULT/60|bc) SEC=$(echo "$RESULT-($MIN*60)"|bc) - write_page "<tr><td>average test duration (in the last 4 weeks)</td><td>$MIN minutes, $SEC seconds</td></tr>" + write_page "<tr><td>average test duration (in the last $TIMESPAN_VERBOSE)</td><td>$MIN minutes, $SEC seconds</td></tr>" RESULT=$(sqlite3 -init ${INIT} ${PACKAGES_DB} "SELECT COUNT(r.build_date) FROM results AS r JOIN sources AS s ON r.package_id=s.id WHERE r.build_date LIKE '%$DATE%' AND s.architecture='$ARCH'") write_page "<tr><td>packages tested on $DATE</td><td>$RESULT</td></tr>" RESULT=$(sqlite3 -init ${INIT} ${PACKAGES_DB} "SELECT COUNT(r.build_date) FROM results AS r JOIN sources AS s ON r.package_id=s.id WHERE r.build_date > datetime('$DATE', '-$TIMESPAN_RAW days') AND s.architecture='$ARCH'") RESULT="$(echo $RESULT/$TIMESPAN_RAW|bc)" - write_page "<tr><td>packages tested on average per day in the last 4 weeks</td><td>$RESULT</td></tr>" + write_page "<tr><td>packages tested on average per day in the last $TIMESPAN_VERBOSE</td><td>$RESULT</td></tr>" write_page "</table>" } |