From: David Galloway Date: Tue, 25 Feb 2020 14:57:50 +0000 (-0500) Subject: ceph-pull-requests*: Don't risk exposing jenkins credentials X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=22feeab45b4670ce93bd10e5304c8d7fe4144afa;p=ceph-build.git ceph-pull-requests*: Don't risk exposing jenkins credentials The `ps` command doesn't even get run currently because the job stops immediately after make check exits but let's not risk it. Signed-off-by: David Galloway --- diff --git a/ceph-pull-requests-arm64/build/build b/ceph-pull-requests-arm64/build/build index 244a1436..50a5effe 100644 --- a/ceph-pull-requests-arm64/build/build +++ b/ceph-pull-requests-arm64/build/build @@ -5,4 +5,4 @@ export CHECK_MAKEOPTS="-j${n_test_jobs}" export BUILD_MAKEOPTS="-j${n_build_jobs}" timeout 3h ./run-make-check.sh sleep 5 -ps -ef | grep ceph || true +ps -ef | grep -v jnlp | grep ceph || true diff --git a/ceph-pull-requests/build/build b/ceph-pull-requests/build/build index bfeef754..669a4c25 100644 --- a/ceph-pull-requests/build/build +++ b/ceph-pull-requests/build/build @@ -2,4 +2,4 @@ export NPROC=$(nproc) timeout 3h ./run-make-check.sh sleep 5 -ps -ef | grep ceph || true +ps -ef | grep -v jnlp | grep ceph || true