From: Jan-Simon Möller Date: Tue, 10 Sep 2019 21:20:59 +0000 (+0200) Subject: Follow-up fix X-Git-Url: https://gerrit.automotivelinux.org/gerrit/gitweb?a=commitdiff_plain;h=refs%2Fchanges%2F79%2F22379%2F1;p=ci-management.git Follow-up fix Change-Id: I13c0e82a53a19d4343eb2659d1c86eea399d94c3 Signed-off-by: Jan-Simon Möller --- diff --git a/jjb/common/include-agl-lava-jobs-submit.sh b/jjb/common/include-agl-lava-jobs-submit.sh index a029df14..b5d6e7f5 100644 --- a/jjb/common/include-agl-lava-jobs-submit.sh +++ b/jjb/common/include-agl-lava-jobs-submit.sh @@ -125,7 +125,7 @@ handle_skiplist() { } # Analyze jobs results -lavacli results $job_id | tee job-result | grep -v '^\* ' | grep '\[fail\]$' > job-result.fail +( lavacli results $job_id | tee job-result | grep '\[fail\]$' > job-result.fail ) || true # GOODJOB is equal to 0 if any test fail (and not present in a skiplist), 1 if all test are success GOODJOB=1