Skip to content

Commit 055254d

Browse files
committed
fix mistake with label recognition
1 parent 0d34136 commit 055254d

File tree

2 files changed

+4
-25
lines changed

2 files changed

+4
-25
lines changed

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

Lines changed: 3 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -241,7 +241,7 @@ jobs:
241241
if: |
242242
!cancelled() &&
243243
needs.build.outputs.build_conclusion == 'success' &&
244-
contains(github.event.pull_request.labels.*.name, "new-offload-model")
244+
contains(github.event.pull_request.labels.*.name, 'new-offload-model')
245245
permissions:
246246
contents: write
247247
packages: read
@@ -282,31 +282,10 @@ jobs:
282282
- name: Intel / Battlemage Graphics
283283
runner: '["Linux", "bmg"]'
284284
target_devices: level_zero_v1:gpu;level_zero_v2:gpu
285-
- name: Preview Mode
286-
runner: '["Linux", "gen12"]'
287-
target_devices: level_zero:gpu;opencl:gpu;opencl:cpu
288-
extra_lit_opts: --param test-preview-mode=True
289-
binaries_artifact: e2e_bin_preview
290-
291-
# We're in an ABI-breaking window, so these don't make sense for now.
292-
- name: ABI compatibility / sycl-rel-6_2
293-
runner: '["Linux", "pvc"]'
294-
image: ghcr.io/intel/llvm/sycl_prebuilt_tests:sycl-rel-6_2
295-
target_devices: level_zero:gpu
296-
extra_lit_opts: '--param test-preview-mode=False --filter-out "${{ needs.compat_read_exclude.outputs.FILTER_6_2 }}"'
297-
binaries_artifact: 'in-container'
298-
skip_run: true
299-
- name: ABI compatibility / sycl-rel-6_3
300-
runner: '["Linux", "pvc"]'
301-
image: ghcr.io/intel/llvm/sycl_prebuilt_tests:sycl-rel-6_3
302-
target_devices: level_zero:gpu
303-
extra_lit_opts: '--param test-preview-mode=False --filter-out "${{ needs.compat_read_exclude.outputs.FILTER_6_3 }}"'
304-
binaries_artifact: 'in-container'
305-
skip_run: true
306285

307286
uses: ./.github/workflows/sycl-linux-run-tests.yml
308287
with:
309-
name: ${{ matrix.name }}
288+
name: ${{ matrix.name }} with NewOffloadModel
310289
runner: ${{ matrix.runner }}
311290
image: ${{ matrix.image }}
312291
image_options: ${{ matrix.image_options || '-u 1001 --device=/dev/dri -v /dev/dri/by-path:/dev/dri/by-path --privileged --cap-add SYS_ADMIN' }}
@@ -316,7 +295,7 @@ jobs:
316295
toolchain_artifact: ${{ needs.build.outputs.toolchain_artifact }}
317296
toolchain_artifact_filename: ${{ needs.build.outputs.toolchain_artifact_filename }}
318297
toolchain_decompress_command: ${{ needs.build.outputs.toolchain_decompress_command }}
319-
binaries_artifact: ${{ matrix.binaries_artifact || 'e2e_bin' }}
298+
binaries_artifact: ${{ matrix.binaries_artifact || 'e2e_bin_with_new_offload_model' }}
320299
testing_mode: ${{ matrix.testing_mode || 'run-only' }}
321300

322301
# Do not install drivers on AMD and CUDA runners.

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -260,7 +260,7 @@ jobs:
260260
# inputs.e2e_binaries_artifact &&
261261
# !cancelled() &&
262262
# steps.build.conclusion == 'success' &&
263-
# contains(github.event.pull_request.labels.*.name, "new-offload-model")
263+
# contains(github.event.pull_request.labels.*.name, 'new-offload-model')
264264
# uses: ./devops/actions/run-tests/windows/e2e
265265
# with:
266266
# ref: ${{ inputs.ref || github.sha }}

0 commit comments

Comments
 (0)