Skip to content
Snippets Groups Projects
Unverified Commit 4c5db2d0 authored by Lars Bilke's avatar Lars Bilke Committed by GitHub
Browse files

[Jenkins] Fixed Sanitizer-job environment variable.

`$WORKSPACE` variable is correctly substituted when using double quotation marks.
parent d022a1d8
No related branches found
No related tags found
No related merge requests found
...@@ -472,7 +472,7 @@ pipeline { ...@@ -472,7 +472,7 @@ pipeline {
} }
environment { environment {
UBSAN_OPTIONS = 'print_stacktrace=1' UBSAN_OPTIONS = 'print_stacktrace=1'
LSAN_OPTIONS = 'suppressions=$WORKSPACE/scripts/test/leak_sanitizer.suppressions' LSAN_OPTIONS = "suppressions=$WORKSPACE/scripts/test/leak_sanitizer.suppressions"
} }
steps { steps {
script { script {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment