Skip to content

Commit def7334

Browse files
committed
fix
Signed-off-by: Sarnie, Nick <[email protected]>
1 parent 645b8b0 commit def7334

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/sycl-linux-run-tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -341,7 +341,7 @@ jobs:
341341
run: |
342342
# When building with oneAPI, the oneAPI libsycl is found before the newly compiled one and the search order
343343
# can't be changed by environment variables, so just rename it temporarily.
344-
if [ ${{ inputs.is_icx }} == 'true' ];
344+
if [ ${{ inputs.is_icx }} == 'true' ]; then
345345
sudo mv /opt/intel/oneapi/compiler/2025.0/lib/libsycl.so /opt/intel/oneapi/compiler/2025.0/lib/libsycl.so.bak
346346
fi
347347
ninja -C build-e2e check-sycl-e2e > e2e.log 2>&1
@@ -350,7 +350,7 @@ jobs:
350350
if [ $exit_code -ne 0 ]; then
351351
awk '/^Failed Tests|Unexpectedly Passed Tests|Unresolved tests|Testing Time/{flag=1}/FAILED: CMakeFiles/{flag=0}flag' e2e.log >> $GITHUB_STEP_SUMMARY
352352
fi
353-
if [ ${{ inputs.is_icx }} == 'true' ];
353+
if [ ${{ inputs.is_icx }} == 'true' ]; then
354354
sudo mv /opt/intel/oneapi/compiler/2025.0/lib/libsycl.so.bak /opt/intel/oneapi/compiler/2025.0/lib/libsycl.so
355355
fi
356356
exit $exit_code

0 commit comments

Comments
 (0)