summaryrefslogtreecommitdiffstats
path: root/bin/reproducible_html_dashboard.sh
diff options
context:
space:
mode:
authorHolger Levsen <holger@layer-acht.org>2016-04-25 21:56:52 +0200
committerHolger Levsen <holger@layer-acht.org>2016-04-25 21:56:52 +0200
commit8e9dd4ea89dc6e0035014d0a6ba9ab1423126ef3 (patch)
tree5de25012f27f049700295064318aeb44896fd902 /bin/reproducible_html_dashboard.sh
parent3fa89c07126b04c1c1d841159b702f658416c915 (diff)
downloadjenkins.debian.net-8e9dd4ea89dc6e0035014d0a6ba9ab1423126ef3.tar.xz
Revert "reproducible debian dashboard: show correct average for i386 builds per day"
This reverts commit 0fee5e52b99a57a9f5ab67d6f3d03cd51be3025e.
Diffstat (limited to 'bin/reproducible_html_dashboard.sh')
-rwxr-xr-xbin/reproducible_html_dashboard.sh9
1 files changed, 1 insertions, 8 deletions
diff --git a/bin/reproducible_html_dashboard.sh b/bin/reproducible_html_dashboard.sh
index 4e6970df..f5d1faa8 100755
--- a/bin/reproducible_html_dashboard.sh
+++ b/bin/reproducible_html_dashboard.sh
@@ -328,16 +328,9 @@ write_build_performance_stats() {
done
write_page "</tr><tr><td>packages tested on average per day in the last $TIMESPAN_VERBOSE</td>"
for ARCH in ${ARCHS} ; do
- if [ "$ARCH" = "i386" ] ; then
- TIMESPAN_RAW=$(sqlite3 -init ${INIT} ${PACKAGES_DB} "SELECT CAST(max(oldest_reproducible, oldest_unreproducible, oldest_FTBFS) AS INTEGER) FROM ${TABLE[2]} WHERE suite='testing' AND architecture='$ARCH' AND datum='$DATE'")
- fi
RESULT=$(sqlite3 -init ${INIT} ${PACKAGES_DB} "SELECT COUNT(r.build_date) FROM stats_build AS r WHERE r.build_date > datetime('$DATE', '-$TIMESPAN_RAW days') AND r.architecture='$ARCH'")
RESULT="$(echo $RESULT/$TIMESPAN_RAW|bc)"
- if [ "$ARCH" != "i386" ] ; then
- write_page "<td>$RESULT</td>"
- else
- write_page "<td>$RESULT ($TIMESPAN_RAW days)</td>"
- fi
+ write_page "<td>$RESULT</td>"
done
local TIMESPAN_VERBOSE="3 months"
local TIMESPAN_RAW="91.5"