Skip to content

Commit c10fceb

Browse files
committed
test
Signed-off-by: Nick Sarnie <[email protected]>
1 parent b152811 commit c10fceb

File tree

7 files changed

+14
-14
lines changed

7 files changed

+14
-14
lines changed

.github/workflows/sycl-linux-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ permissions: read-all
138138
jobs:
139139
build:
140140
name: Build + LIT
141-
runs-on: [Linux, build]
141+
runs-on: [Linux, build-test]
142142
container:
143143
image: ${{ inputs.build_image }}
144144
options: -u 1001:1001

.github/workflows/sycl-linux-precommit.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ jobs:
7171
# build all the e2e tests
7272
build_run_native_cpu_e2e_tests:
7373
if: ${{ !cancelled() && needs.build.outputs.build_conclusion == 'success' }}
74-
runs-on: [Linux, build]
74+
runs-on: [Linux, build-test]
7575
needs: [build]
7676
container:
7777
image: ghcr.io/intel/llvm/sycl_ubuntu2404_nightly:latest
@@ -173,10 +173,10 @@ jobs:
173173
use_igc_dev: true
174174
env: '{"LIT_FILTER":"Matrix/"}'
175175
- name: Intel / Ponte Vecchio GPU
176-
runner: '["Linux", "pvc"]'
176+
runner: '["Linux", "pvc-test"]'
177177
target_devices: level_zero:gpu;opencl:gpu;level_zero_v2:gpu
178178
- name: Intel Dev IGC / Ponte Vecchio GPU
179-
runner: '["Linux", "pvc"]'
179+
runner: '["Linux", "pvc-test"]'
180180
image: ghcr.io/intel/llvm/ubuntu2404_intel_drivers:devigc
181181
target_devices: level_zero:gpu
182182
use_igc_dev: true
@@ -192,14 +192,14 @@ jobs:
192192

193193
# We're in an ABI-breaking window, so these don't make sense for now.
194194
- name: ABI compatibility / sycl-rel-6_2
195-
runner: '["Linux", "pvc"]'
195+
runner: '["Linux", "pvc-test"]'
196196
image: ghcr.io/intel/llvm/sycl_prebuilt_tests:sycl-rel-6_2
197197
target_devices: level_zero:gpu
198198
extra_lit_opts: '--param test-preview-mode=False --filter-out "${{ needs.compat_read_exclude.outputs.FILTER_6_2 }}"'
199199
binaries_artifact: 'in-container'
200200
skip_run: true
201201
- name: ABI compatibility / sycl-rel-6_3
202-
runner: '["Linux", "pvc"]'
202+
runner: '["Linux", "pvc-test"]'
203203
image: ghcr.io/intel/llvm/sycl_prebuilt_tests:sycl-rel-6_3
204204
target_devices: level_zero:gpu
205205
extra_lit_opts: '--param test-preview-mode=False --filter-out "${{ needs.compat_read_exclude.outputs.FILTER_6_3 }}"'

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ on:
153153
- '["Linux", "gen12"]'
154154
- '["amdgpu"]'
155155
- '["Linux", "arc"]'
156-
- '["Linux", "pvc"]'
156+
- '["Linux", "pvc-test"]'
157157
- '["cts-cpu"]'
158158
- '["Linux", "build"]'
159159
- '["cuda"]'

.github/workflows/sycl-nightly.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ jobs:
128128
target_devices: level_zero:gpu
129129

130130
- name: Intel L0 Ponte Vecchio GPU
131-
runner: '["Linux", "pvc"]'
131+
runner: '["Linux", "pvc-test"]'
132132
target_devices: level_zero:gpu
133133

134134
- name: Intel L0 Battlemage GPU
@@ -164,7 +164,7 @@ jobs:
164164
target_devices: opencl:cpu
165165

166166
- name: Preview mode on SPR/PVC
167-
runner: '["Linux", "pvc"]'
167+
runner: '["Linux", "pvc-test"]'
168168
target_devices: level_zero:gpu
169169
extra_lit_opts: --param test-preview-mode=True
170170

@@ -190,7 +190,7 @@ jobs:
190190
uses: ./.github/workflows/sycl-linux-run-tests.yml
191191
with:
192192
name: Intel PVC L0 oneAPI
193-
runner: '["Linux", "pvc"]'
193+
runner: '["Linux", "pvc-test"]'
194194
target_devices: level_zero:gpu
195195
extra_lit_opts: -j 50
196196
image_options: -u 1001 --device=/dev/dri -v /dev/dri/by-path:/dev/dri/by-path --privileged --cap-add SYS_ADMIN

.github/workflows/sycl-prebuilt-e2e-container.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ jobs:
9292
# I'll start with just a single configuration, but this might be extended
9393
# with a matrix in future (e.g., to run on cpu/CUDA/AMDGPU).
9494
name: Run E2E tests with SYCL RT they were built with
95-
runs-on: [Linux, pvc]
95+
runs-on: [Linux, pvc-test]
9696
needs: [docker, build]
9797
if: ${{ !cancelled() && needs.build.outputs.build_conclusion == 'success' }}
9898
container:

.github/workflows/sycl-weekly.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,12 +51,12 @@ jobs:
5151
matrix:
5252
include:
5353
- name: SYCL-CTS on OCL CPU PVC w/ LLVM SPIR-V Backend
54-
runner: '["Linux", "pvc"]'
54+
runner: '["Linux", "pvc-test"]'
5555
image_options: -u 1001 --device=/dev/dri --privileged --cap-add SYS_ADMIN
5656
target_devices: opencl:cpu
5757

5858
- name: SYCL-CTS on L0 GPU PVC w/ LLVM SPIR-V Backend
59-
runner: '["Linux", "pvc"]'
59+
runner: '["Linux", "pvc-test"]'
6060
image_options: -u 1001 --device=/dev/dri --privileged --cap-add SYS_ADMIN
6161
target_devices: level_zero:gpu
6262
uses: ./.github/workflows/sycl-linux-run-tests.yml

.github/workflows/ur-build-offload.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
build_type: [Release]
1414
compiler: [{c: gcc, cxx: g++}]
1515

16-
runs-on: [ "Linux", "build" ]
16+
runs-on: [ "Linux", "build-test" ]
1717
container:
1818
image: 'ghcr.io/intel/llvm/ubuntu2404_base'
1919

0 commit comments

Comments
 (0)