Commit 191679e8 authored by Dominik Charousset's avatar Dominik Charousset

Explicitly disable LeakSanitizer due to issues

LeakSanitizer runs into fatal errors on our Docker images for GCC8.
parent cabe2020
...@@ -157,8 +157,8 @@ def buildSteps(buildType, cmakeArgs, buildId) { ...@@ -157,8 +157,8 @@ def buildSteps(buildType, cmakeArgs, buildId) {
} }
} else { } else {
echo "Unix build on $NODE_NAME" echo "Unix build on $NODE_NAME"
def leakCheck = STAGE_NAME.contains("Linux") && !STAGE_NAME.contains("clang") withEnv(["label_exp=" + STAGE_NAME.toLowerCase(),
withEnv(["label_exp=" + STAGE_NAME.toLowerCase()]) { "ASAN_OPTIONS=detect_leaks=0"]) {
cmakeSteps(buildType, cmakeArgs, buildId) cmakeSteps(buildType, cmakeArgs, buildId)
} }
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment