File tree Expand file tree Collapse file tree 1 file changed +8
-2
lines changed Expand file tree Collapse file tree 1 file changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -188,19 +188,25 @@ jobs:
188
188
run : cmake --build $GITHUB_WORKSPACE/build --target ${{ inputs.build_target || 'sycl-toolchain' }}
189
189
- name : check-llvm
190
190
if : always() && !cancelled() && contains(inputs.changes, 'llvm')
191
+ env :
192
+ # Can't inline to support possible quotes inside:
193
+ BUILD_CONFIGURE_EXTRA_ARGS : ${{ inputs.build_configure_extra_args }}
191
194
run : |
192
- if [[ "${{ inputs.build_configure_extra_args } }" == *"--use-libcxx"* ]]; then
195
+ if [[ "${BUILD_CONFIGURE_EXTRA_ARGS }" == *"--use-libcxx"* ]]; then
193
196
# https://github.com/llvm/llvm-project/issues/59429
194
197
export LIT_FILTER_OUT="ExecutionEngine/MCJIT"
195
198
fi
196
199
197
200
cmake --build $GITHUB_WORKSPACE/build --target check-llvm
198
201
- name : check-clang
199
202
if : always() && !cancelled() && contains(inputs.changes, 'clang')
203
+ env :
204
+ # Can't inline to support possible quotes inside:
205
+ BUILD_CONFIGURE_EXTRA_ARGS : ${{ inputs.build_configure_extra_args }}
200
206
run : |
201
207
# Can we move this to Dockerfile? Hopefully, noop on Windows.
202
208
export XDG_CACHE_HOME=$GITHUB_WORKSPACE/os_cache
203
- if [[ "${{ inputs.build_configure_extra_args } }" == *"--use-libcxx"* ]]; then
209
+ if [[ "${BUILD_CONFIGURE_EXTRA_ARGS }" == *"--use-libcxx"* ]]; then
204
210
# https://github.com/llvm/llvm-project/issues/59428
205
211
export LIT_FILTER_OUT="(E|e)xception"
206
212
fi
You can’t perform that action at this time.
0 commit comments