3939 runs-on : ${{matrix.os}}
4040
4141 steps :
42- - uses : actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3.6.0
42+ - uses : actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
4343
4444 - name : Install apt packages
4545 run : |
6868 if : matrix.os == 'ubuntu-22.04'
6969 run : |
7070 sudo apt install libncurses5
71- wget -O ${{github.workspace}}/dpcpp_compiler.tar.gz https://github.com/intel/llvm/releases/download/nightly-2023-09-21 /sycl_linux.tar.gz
71+ wget -O ${{github.workspace}}/dpcpp_compiler.tar.gz https://github.com/intel/llvm/releases/download/nightly-2024-01-29 /sycl_linux.tar.gz
7272 mkdir -p ${{github.workspace}}/dpcpp_compiler
7373 tar -xvf ${{github.workspace}}/dpcpp_compiler.tar.gz -C ${{github.workspace}}/dpcpp_compiler
7474
@@ -125,7 +125,7 @@ jobs:
125125 runs-on : ' ubuntu-22.04'
126126
127127 steps :
128- - uses : actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3.6.0
128+ - uses : actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
129129
130130 - name : Install pip packages
131131 run : pip install -r third_party/requirements.txt
@@ -169,22 +169,23 @@ jobs:
169169 {name: CUDA, platform: ""},
170170 {name: HIP, platform: ""},
171171 {name: L0, platform: ""},
172- {name: OPENCL, platform: "Intel(R) OpenCL"}
172+ {name: OPENCL, platform: "Intel(R) OpenCL"},
173+ {name: NATIVE_CPU, platform: ""}
173174 ]
174175 build_type : [Debug, Release]
175176 compiler : [{c: gcc, cxx: g++}, {c: clang, cxx: clang++}]
176177
177178 runs-on : ${{matrix.adapter.name}}
178179
179180 steps :
180- - uses : actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3.6.0
181+ - uses : actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
181182
182183 - name : Install pip packages
183184 run : pip install -r third_party/requirements.txt
184185
185186 - name : Download DPC++
186187 run : |
187- wget -O ${{github.workspace}}/dpcpp_compiler.tar.gz https://github.com/intel/llvm/releases/download/nightly-2023-09-21 /sycl_linux.tar.gz
188+ wget -O ${{github.workspace}}/dpcpp_compiler.tar.gz https://github.com/intel/llvm/releases/download/nightly-2024-01-29 /sycl_linux.tar.gz
188189 mkdir dpcpp_compiler
189190 tar -xvf ${{github.workspace}}/dpcpp_compiler.tar.gz -C dpcpp_compiler
190191
@@ -212,15 +213,7 @@ jobs:
212213 working-directory : ${{github.workspace}}/build
213214 run : ctest -C ${{matrix.build_type}} --output-on-failure -L "adapter-specific" --timeout 180
214215
215- # Temporarily disabling platform test for L0, because of hang
216- # See issue: #824
217- - name : Test L0 adapter
218- if : matrix.adapter.name == 'L0'
219- working-directory : ${{github.workspace}}/build
220- run : ctest -C ${{matrix.build_type}} --output-on-failure -L "conformance" -E "platform-adapter_level_zero" --timeout 180
221-
222216 - name : Test adapters
223- if : matrix.adapter.name != 'L0'
224217 working-directory : ${{github.workspace}}/build
225218 run : env UR_CTS_ADAPTER_PLATFORM="${{matrix.adapter.platform}}" ctest -C ${{matrix.build_type}} --output-on-failure -L "conformance" --timeout 180
226219
@@ -230,7 +223,8 @@ jobs:
230223
231224 examples-build-hw :
232225 name : Build - examples on HW
233- if : github.repository == 'oneapi-src/unified-runtime' # run only on upstream; forks won't have the HW
226+ # if: github.repository == 'oneapi-src/unified-runtime' # run only on upstream; forks won't have the HW
227+ if : false # temporaily disabled due to conda env setup issues
234228 strategy :
235229 matrix :
236230 adapter : [
@@ -242,7 +236,7 @@ jobs:
242236 runs-on : ${{matrix.adapter.name}}
243237
244238 steps :
245- - uses : actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3.6.0
239+ - uses : actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
246240
247241 - name : Install pip packages
248242 run : pip install -r third_party/requirements.txt
@@ -308,7 +302,7 @@ jobs:
308302 runs-on : ${{matrix.os}}
309303
310304 steps :
311- - uses : actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3.6.0
305+ - uses : actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
312306
313307 - uses : actions/setup-python@65d7f2d534ac1bc67fcd62888c5f4f3d2cb2b236 # v4.7.1
314308 with :
@@ -359,7 +353,7 @@ jobs:
359353 runs-on : ${{matrix.os}}
360354
361355 steps :
362- - uses : actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744 # v3.6.0
356+ - uses : actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
363357
364358 - uses : actions/setup-python@65d7f2d534ac1bc67fcd62888c5f4f3d2cb2b236 # v4.7.1
365359 with :
0 commit comments