From 7e28501a1a0ffdbbb9e26afc8e1806928435529f Mon Sep 17 00:00:00 2001 From: Andrei Elovikov Date: Fri, 7 Nov 2025 09:23:33 -0800 Subject: [PATCH] [CI] Disable ABI-compatibility testing in pre-commit We're in ABI-breaking window so those don't make sense for now. --- .github/workflows/sycl-linux-precommit.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/sycl-linux-precommit.yml b/.github/workflows/sycl-linux-precommit.yml index c94a3469858a8..a77376ed0aeb7 100644 --- a/.github/workflows/sycl-linux-precommit.yml +++ b/.github/workflows/sycl-linux-precommit.yml @@ -189,18 +189,22 @@ jobs: target_devices: level_zero:gpu;opencl:gpu;opencl:cpu extra_lit_opts: --param test-preview-mode=True binaries_artifact: e2e_bin_preview + + # We're in an ABI-breaking window, so these don't make sense for now. - name: ABI compatibility / sycl-rel-6_2 runner: '["Linux", "pvc"]' image: ghcr.io/intel/llvm/sycl_prebuilt_tests:sycl-rel-6_2 target_devices: level_zero:gpu extra_lit_opts: '--param test-preview-mode=False --filter-out "${{ needs.compat_read_exclude.outputs.FILTER_6_2 }}"' binaries_artifact: 'in-container' + skip_run: true - name: ABI compatibility / sycl-rel-6_3 runner: '["Linux", "pvc"]' image: ghcr.io/intel/llvm/sycl_prebuilt_tests:sycl-rel-6_3 target_devices: level_zero:gpu extra_lit_opts: '--param test-preview-mode=False --filter-out "${{ needs.compat_read_exclude.outputs.FILTER_6_3 }}"' binaries_artifact: 'in-container' + skip_run: true uses: ./.github/workflows/sycl-linux-run-tests.yml with: @@ -229,7 +233,7 @@ jobs: (contains(needs.detect_changes.outputs.filters, 'devigccfg') || contains(needs.detect_changes.outputs.filters, 'drivers')) || 'false' }} # Run only if the PR does not have the 'ci-no-devigc' label. - skip_run: ${{matrix.use_igc_dev && contains(github.event.pull_request.labels.*.name, 'ci-no-devigc') || 'false'}} + skip_run: ${{matrix.use_igc_dev && contains(github.event.pull_request.labels.*.name, 'ci-no-devigc') || matrix.skip_run || 'false'}} env: ${{ matrix.env || (contains(needs.detect_changes.outputs.filters, 'esimd') && '{}' || '{"LIT_FILTER_OUT":"ESIMD/"}') }} test-perf: