Skip to content

Commit 41fe942

Browse files
authored
Flip condition for asan in Jenkinsfile
1 parent 044d2bc commit 41fe942

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Jenkinsfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -340,7 +340,7 @@ pipeline {
340340
sh "echo CXXFLAGS += -march=native -mtune=native >> make/local"
341341
sh "echo O=3 >> make/local"
342342
script {
343-
if (!(params.optimizeUnitTests || isBranch('develop') || isBranch('master'))) {
343+
if (params.optimizeUnitTests || isBranch('develop') || isBranch('master')) {
344344
sh "echo CXXFLAGS += -fsanitize=address >> make/local"
345345
}
346346
runTests("test/unit/math/laplace/*_test.cpp", false)

0 commit comments

Comments
 (0)