From 6a14bad82a9725d6896d6e011f17d4ef03c28f5f Mon Sep 17 00:00:00 2001 From: Holger Levsen Date: Fri, 22 May 2015 15:00:54 +0200 Subject: reproducible: add new row to overview page to show the average test duration in unstable --- bin/reproducible_html_graphs.sh | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'bin/reproducible_html_graphs.sh') diff --git a/bin/reproducible_html_graphs.sh b/bin/reproducible_html_graphs.sh index e5bbac11..effb92d5 100755 --- a/bin/reproducible_html_graphs.sh +++ b/bin/reproducible_html_graphs.sh @@ -565,6 +565,10 @@ create_main_stats_page() { fi RESULT=$(sqlite3 -init ${INIT} -csv ${PACKAGES_DB} "SELECT CAST(max(oldest_reproducible, oldest_unreproducible, oldest_FTBFS) AS INTEGER) FROM ${TABLE[2]} WHERE suite='${SUITE}' AND datum='$DATE'") write_page "oldest build result in $SUITE$RESULT days" + RESULT=$(sqlite3 -init ${INIT} -csv ${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 s.suite='${SUITE}' AND r.build_duration!='' AND r.build_duration!='0'") + MIN=$(echo $RESULT/60|bc) + SEC=$(echo "$RESULT-($MIN*60)"|bc) + write_page "average test duration in $SUITE$MIN minutes, $SEC seconds" write_page "" # other graphs write_page "

" -- cgit v1.2.3-70-g09d2