From 2d5296680616a6bb30e8daeec55793c36b9bda73 Mon Sep 17 00:00:00 2001 From: Alex Kremer Date: Tue, 13 May 2025 15:50:22 +0100 Subject: [PATCH] ci: Attempt to remove whitespace to fix sanitizer build (#2105) Let's see if this does the trick. Alternatives are - more complicated cleanup using sed or similar - don't multiline the expression (e.g. "${{ multiline expression becomes single line }}") - don't wrap `SANITIZER_OPTION` in double quotes (like it was before) - something else that i did not find - let me know if you know --- .github/actions/generate/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/actions/generate/action.yml b/.github/actions/generate/action.yml index 59f014ea..3c2f91e4 100644 --- a/.github/actions/generate/action.yml +++ b/.github/actions/generate/action.yml @@ -73,7 +73,7 @@ runs: shell: bash env: BUILD_TYPE: "${{ inputs.build_type }}" - SANITIZER_OPTION: | + SANITIZER_OPTION: |- ${{ inputs.sanitizer == 'tsan' && '-Dsan=thread' || inputs.sanitizer == 'ubsan' && '-Dsan=undefined' || inputs.sanitizer == 'asan' && '-Dsan=address' ||