summaryrefslogtreecommitdiffstats
path: root/jjb/scripts/vpp/cov-build.sh
diff options
context:
space:
mode:
authorVanessa Valderrama <vvalderrama@linuxfoundation.org>2023-08-22 13:48:51 +0000
committerGerrit Code Review <gerrit@fd.io>2023-08-22 13:48:51 +0000
commit6eb48ef838d3968c94f707dde5c686b1b5a23f0f (patch)
treeba278e8aea01a1b9068e8678e00a68153c5b90f2 /jjb/scripts/vpp/cov-build.sh
parenta9dcab7a8ef57f3c41feabc2301013df40e5d79f (diff)
parentdd69cd845711ab131a91fcee26364300875cfb31 (diff)
Merge "vpp: disable ccache for gcc builds"
Diffstat (limited to 'jjb/scripts/vpp/cov-build.sh')
-rw-r--r--jjb/scripts/vpp/cov-build.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/jjb/scripts/vpp/cov-build.sh b/jjb/scripts/vpp/cov-build.sh
index 7cfa82e63..15f86c3bf 100644
--- a/jjb/scripts/vpp/cov-build.sh
+++ b/jjb/scripts/vpp/cov-build.sh
@@ -62,7 +62,7 @@ make_test_coverage_report() {
BUILD_ERROR="FAILED 'make test-dep'"
return
fi
- if ! make UNATTENDED=yes pkg-verify ; then
+ if ! make UNATTENDED=yes CCACHE_DISABLE=1 pkg-verify ; then
BUILD_ERROR="FAILED 'make pkg-verify'"
return
fi
@@ -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" test-cov ; then
+ if ! make COMPRESS_FAILED_TEST_LOGS=yes TEST_JOBS="$TEST_JOBS" CCACHE_DISABLE=1 test-cov ; then
BUILD_ERROR="FAILED 'make test-cov'"
return
fi