diff options
author | Holger Levsen <holger@layer-acht.org> | 2017-05-02 14:28:50 +0200 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2017-05-02 14:28:50 +0200 |
commit | dc0c2c2dd090f45d575327275b95b11470991e41 (patch) | |
tree | ebe6d861ab238102c1daaf58ed9187944c3dfd8c | |
parent | 7e408dfbcc1edde7c61fee34e53f986bb391b341 (diff) | |
download | jenkins.debian.net-dc0c2c2dd090f45d575327275b95b11470991e41.tar.xz |
reproducible Debian: only count actually running builds
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 53f78d87..dae5917a 100755 --- a/bin/reproducible_html_dashboard.sh +++ b/bin/reproducible_html_dashboard.sh @@ -340,9 +340,9 @@ write_build_performance_stats() { for ARCH in ${ARCHS} ; do write_page "<td>$(grep "MAX=" /srv/jenkins/bin/reproducible_build_service.sh |grep $ARCH|cut -d "=" -f2-|cut -d " " -f1)</td>" done - write_page "</tr><tr><td class=\"left\">Build jobs currently running</td>" + write_page "</tr><tr><td class=\"left\">Build jobs currently running remotely</td>" for ARCH in ${ARCHS} ; do - write_page "<td>$(ps fax|grep reproducible_build.sh|grep bash|grep -c $ARCH)</td>" + write_page "<td>$(ps fax|grep reproducible_build.sh|grep ssh|grep -c $ARCH)</td>" done write_page "</tr><tr><td class=\"left\">average test duration (on $DATE)</td>" for ARCH in ${ARCHS} ; do |