diff options
author | Holger Levsen <holger@layer-acht.org> | 2017-01-08 11:52:08 +0100 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2017-01-08 11:52:08 +0100 |
commit | 88731c67f0e22705069bcbec33cd023972535056 (patch) | |
tree | 0ba5a6f9023c26f8de72a4a27db3ba58c1db6862 | |
parent | ca27265fef4fb6599ba5f95af3cd453acb868213 (diff) | |
download | jenkins.debian.net-88731c67f0e22705069bcbec33cd023972535056.tar.xz |
reproducible Debian: calculate daily average for the last _2_ weeks on arm64
Signed-off-by: Holger Levsen <holger@layer-acht.org>
-rwxr-xr-x | bin/reproducible_html_dashboard.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/reproducible_html_dashboard.sh b/bin/reproducible_html_dashboard.sh index fe1a7e37..0502c64a 100755 --- a/bin/reproducible_html_dashboard.sh +++ b/bin/reproducible_html_dashboard.sh @@ -343,8 +343,8 @@ write_build_performance_stats() { write_page "</tr><tr><td class=\"left\">packages tested on average per day in the last $TIMESPAN_VERBOSE</td>" for ARCH in ${ARCHS} ; do if [ "$ARCH" = "arm64" ] ; then - TIMESPAN_RAW="7" - local ARM64_DISCLAIMER=" <span style=\"font-size:0.8em;\">(daily average in the last week)</span>" + TIMESPAN_RAW="14" + local ARM64_DISCLAIMER=" <span style=\"font-size:0.8em;\">(in the last 2 weeks)</span>" else TIMESPAN_RAW="28" local ARM64_DISCLAIMER="" |