File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed
Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -187,7 +187,6 @@ jobs:
187187 if : always() && !cancelled() && contains(inputs.changes, 'llvm')
188188 run : |
189189 if [[ ${{inputs.cc}} == 'icx' ]] || [[ ${inputs.cxx}} == 'icpx' ]]; then
190-
191190 export LIT_FILTER="SYCL"
192191 fi
193192 cmake --build $GITHUB_WORKSPACE/build --target check-llvm
Original file line number Diff line number Diff line change @@ -222,7 +222,7 @@ jobs:
222222 - name : SYCL CTS GIT submodules init
223223 if : inputs.tests_selector == 'cts'
224224 run : |
225- git -C khronos_sycl_cts submodule update --init
225+ git -C khronos_sycl_cts submodule update --init
226226 - name : Install drivers
227227 if : inputs.install_igc_driver == 'true' || inputs.install_dev_igc_driver == 'true'
228228 env :
@@ -339,6 +339,8 @@ jobs:
339339 env :
340340 LIT_OPTS : -v --no-progress-bar --show-unsupported --show-pass --show-xfail --max-time 3600 --time-tests --param test-mode=${{ inputs.e2e_testing_mode }} --param sycl_devices=${{ inputs.target_devices }} ${{ inputs.extra_lit_opts }}
341341 run : |
342+ # When building with oneAPI, the oneAPI libsycl is found before the newly compiled one and the search order
343+ # can't be changed by environment variables, so just rename it temporarily.
342344 if [ ${{ inputs.is_icx }} == 'true' ];
343345 sudo mv /opt/intel/oneapi/compiler/2025.0/lib/libsycl.so /opt/intel/oneapi/compiler/2025.0/lib/libsycl.so.bak
344346 fi
You can’t perform that action at this time.
0 commit comments