Skip to content

Commit 0289b15

Browse files
[CI] Disable ABI-compatibility testing in pre-commit (#20597)
We're in ABI-breaking window so those don't make sense for now.
1 parent 7aa73a8 commit 0289b15

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

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

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -189,18 +189,22 @@ jobs:
189189
target_devices: level_zero:gpu;opencl:gpu;opencl:cpu
190190
extra_lit_opts: --param test-preview-mode=True
191191
binaries_artifact: e2e_bin_preview
192+
193+
# We're in an ABI-breaking window, so these don't make sense for now.
192194
- name: ABI compatibility / sycl-rel-6_2
193195
runner: '["Linux", "pvc"]'
194196
image: ghcr.io/intel/llvm/sycl_prebuilt_tests:sycl-rel-6_2
195197
target_devices: level_zero:gpu
196198
extra_lit_opts: '--param test-preview-mode=False --filter-out "${{ needs.compat_read_exclude.outputs.FILTER_6_2 }}"'
197199
binaries_artifact: 'in-container'
200+
skip_run: true
198201
- name: ABI compatibility / sycl-rel-6_3
199202
runner: '["Linux", "pvc"]'
200203
image: ghcr.io/intel/llvm/sycl_prebuilt_tests:sycl-rel-6_3
201204
target_devices: level_zero:gpu
202205
extra_lit_opts: '--param test-preview-mode=False --filter-out "${{ needs.compat_read_exclude.outputs.FILTER_6_3 }}"'
203206
binaries_artifact: 'in-container'
207+
skip_run: true
204208

205209
uses: ./.github/workflows/sycl-linux-run-tests.yml
206210
with:
@@ -229,7 +233,7 @@ jobs:
229233
(contains(needs.detect_changes.outputs.filters, 'devigccfg') || contains(needs.detect_changes.outputs.filters, 'drivers')) ||
230234
'false' }}
231235
# Run only if the PR does not have the 'ci-no-devigc' label.
232-
skip_run: ${{matrix.use_igc_dev && contains(github.event.pull_request.labels.*.name, 'ci-no-devigc') || 'false'}}
236+
skip_run: ${{matrix.use_igc_dev && contains(github.event.pull_request.labels.*.name, 'ci-no-devigc') || matrix.skip_run || 'false'}}
233237
env: ${{ matrix.env || (contains(needs.detect_changes.outputs.filters, 'esimd') && '{}' || '{"LIT_FILTER_OUT":"ESIMD/"}') }}
234238

235239
test-perf:

0 commit comments

Comments
 (0)