diff options
author | Dave Wallace <dwallacelf@gmail.com> | 2023-07-25 12:35:19 -0400 |
---|---|---|
committer | Dave Wallace <dwallacelf@gmail.com> | 2023-07-25 12:35:19 -0400 |
commit | 8370950e8df43e8cbe20f61df64d77b788c1561c (patch) | |
tree | d07996ae81688474e1b57d404b74048be46e1bcf /jjb/scripts | |
parent | f63ed8d3fb1ec5b513e54f9fe15b8368e8701128 (diff) |
Move vpp-cov-* CI job from per-patch to daily execution
Change-Id: I2798fafcc3182a735f6fd380ef558c585fd28b64
Signed-off-by: Dave Wallace <dwallacelf@gmail.com>
Diffstat (limited to 'jjb/scripts')
-rw-r--r-- | jjb/scripts/vpp/cov-build.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/jjb/scripts/vpp/cov-build.sh b/jjb/scripts/vpp/cov-build.sh index b5fdeb597..7cfa82e63 100644 --- a/jjb/scripts/vpp/cov-build.sh +++ b/jjb/scripts/vpp/cov-build.sh @@ -85,7 +85,7 @@ make_test_coverage_report() { fi fi if grep -q "${OS_ID}-${OS_VERSION_ID}" <<< "${MAKE_TEST_OS}"; then - if ! make COMPRESS_FAILED_TEST_LOGS=yes TEST_JOBS="$TEST_JOBS" RETRIES=3 test-cov ; then + if ! make COMPRESS_FAILED_TEST_LOGS=yes TEST_JOBS="$TEST_JOBS" test-cov ; then BUILD_ERROR="FAILED 'make test-cov'" return fi |