File tree Expand file tree Collapse file tree 5 files changed +6
-2
lines changed Expand file tree Collapse file tree 5 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -209,6 +209,7 @@ jobs:
209209 id : build
210210 # Emulate default value for manual dispatch as we've run out of available arguments.
211211 run : cmake --build $GITHUB_WORKSPACE/build --target ${{ inputs.build_target || 'sycl-toolchain' }}
212+ - run : $GITHUB_WORKSPACE/build/bin/clang++ --version
212213 - name : check-llvm
213214 if : always() && !cancelled() && contains(inputs.changes, 'llvm')
214215 env :
Original file line number Diff line number Diff line change @@ -328,6 +328,7 @@ jobs:
328328 echo PATH=$PWD/toolchain/bin/:$PATH >> $GITHUB_ENV
329329 echo LD_LIBRARY_PATH=$PWD/toolchain/lib/:$LD_LIBRARY_PATH >> $GITHUB_ENV
330330 - run : which clang++ sycl-ls
331+ - run : clang++ --version
331332 - run : sycl-ls --verbose
332333 - run : SYCL_UR_TRACE=1 sycl-ls
333334 - run : |
Original file line number Diff line number Diff line change 2929 secrets : inherit
3030 with :
3131 build_cache_root : " /__w/"
32- build_configure_extra_args : ' --hip --cuda'
32+ build_configure_extra_args : ' --hip --cuda -DLLVM_VC_REPOSITORY="Nightly" -DLLVM_VC_REVISION="build" '
3333 build_image : ghcr.io/intel/llvm/ubuntu2204_build:latest
3434
3535 retention-days : 90
@@ -191,7 +191,7 @@ jobs:
191191 # functionality, make sure Linux/Windows names follow the same pattern.
192192 toolchain_artifact_filename : sycl_windows.tar.gz
193193 # Disable the spirv-dis requirement as to not require SPIR-V Tools.
194- build_configure_extra_args : -DLLVM_SPIRV_ENABLE_LIBSPIRV_DIS=off
194+ build_configure_extra_args : -DLLVM_SPIRV_ENABLE_LIBSPIRV_DIS=off -DLLVM_VC_REPOSITORY="Nightly" -DLLVM_VC_REVISION="build"
195195 build_target : all
196196
197197 e2e-win :
Original file line number Diff line number Diff line change @@ -159,6 +159,7 @@ jobs:
159159 shell : bash
160160 run : |
161161 cmake --build build --target ${{ inputs.build_target }}
162+ - run : build/bin/clang++ --version
162163 - name : check-llvm
163164 if : always() && !cancelled() && contains(inputs.changes, 'llvm')
164165 shell : bash
Original file line number Diff line number Diff line change @@ -142,6 +142,7 @@ jobs:
142142 run : |
143143 echo "PATH=$env:GITHUB_WORKSPACE\\install\\bin;$env:PATH" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append
144144 echo "LIB=$env:GITHUB_WORKSPACE\\install\\lib;$env:LIB" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append
145+ - run : clang++ --version
145146 - run : |
146147 sycl-ls
147148 - run : |
You can’t perform that action at this time.
0 commit comments