diff options
author | Mattia Rizzolo <mattia@debian.org> | 2016-05-30 23:09:36 +0000 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2016-05-31 09:09:45 +0200 |
commit | 7ad129f49bfc188bc0ab0664c9b89d8ef2d2a2aa (patch) | |
tree | 5e78333ce9efd302efca186aa8479c7f7dc82a67 /bin | |
parent | 04dd73cd54f63da9e1a345f7a95175fb2527d5fb (diff) | |
download | jenkins.debian.net-7ad129f49bfc188bc0ab0664c9b89d8ef2d2a2aa.tar.xz |
reproducible debian: dashboard: do not create this unused temporary file
(cherry picked from commit ee0dc95b62cf011ac5efbf4858910363f4040b48)
Signed-off-by: Holger Levsen <holger@layer-acht.org>
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/reproducible_html_dashboard.sh | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/bin/reproducible_html_dashboard.sh b/bin/reproducible_html_dashboard.sh index acb3b6ad..ba3dfff3 100755 --- a/bin/reproducible_html_dashboard.sh +++ b/bin/reproducible_html_dashboard.sh @@ -294,7 +294,6 @@ write_build_performance_stats() { done write_page "</tr><tr><td class=\"left\">oldest build result in testing / unstable / experimental</td>" for ARCH in ${ARCHS} ; do - PERF_STATS[$ARCH]=$(mktemp -t reproducible-dashboard-perf-XXXXXXXX) AGE_UNSTABLE=$(sqlite3 -init ${INIT} ${PACKAGES_DB} "SELECT CAST(max(oldest_reproducible, oldest_unreproducible, oldest_FTBFS) AS INTEGER) FROM ${TABLE[2]} WHERE suite='unstable' AND architecture='$ARCH' AND datum='$DATE'") AGE_EXPERIMENTAL=$(sqlite3 -init ${INIT} ${PACKAGES_DB} "SELECT CAST(max(oldest_reproducible, oldest_unreproducible, oldest_FTBFS) AS INTEGER) FROM ${TABLE[2]} WHERE suite='experimental' AND architecture='$ARCH' AND datum='$DATE'") AGE_TESTING=$(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'") |