aboutsummaryrefslogtreecommitdiffstats
path: root/.buildkite
diff options
context:
space:
mode:
authorArnstein Ressem <aressem@vespa.ai>2024-05-23 11:08:03 +0200
committerArnstein Ressem <aressem@vespa.ai>2024-05-23 11:08:03 +0200
commita88d724cc11fa5222c548e50b0ad3f0d5e121dc7 (patch)
treee402a812dd7b3944b1e1ea028574212dbce777b7 /.buildkite
parent2020938f9d04f4e4606c781c84ecdaffe45373d9 (diff)
Using ccache should be false when using sanitizers.
Diffstat (limited to '.buildkite')
-rwxr-xr-x.buildkite/bootstrap-cmake.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/.buildkite/bootstrap-cmake.sh b/.buildkite/bootstrap-cmake.sh
index a16970b8caf..75d48142378 100755
--- a/.buildkite/bootstrap-cmake.sh
+++ b/.buildkite/bootstrap-cmake.sh
@@ -8,7 +8,7 @@ VESPA_CMAKE_SANITIZERS_OPTION=""
VESPA_CMAKE_CCACHE_OPTION=""
if [[ $VESPA_USE_SANITIZER != null ]]; then
VESPA_CMAKE_SANITIZERS_OPTION="-DVESPA_USE_SANITIZER=$VESPA_USE_SANITIZER"
- VESPA_CMAKE_CCACHE_OPTION="-DVESPA_USE_CCACHE=true"
+ VESPA_CMAKE_CCACHE_OPTION="-DVESPA_USE_CCACHE=false"
VALGRIND_UNIT_TESTS=false
fi
if [[ $BUILDKITE_PULL_REQUEST != "false" ]]; then