File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments