From a0aa07d3f7f19b7dc20080d8dfb10fc22fbf1db7 Mon Sep 17 00:00:00 2001 From: "Agarwal, Udit" Date: Thu, 12 Jun 2025 22:11:27 +0200 Subject: [PATCH 1/2] [CI] Skip ESIMD E2E tests in precommit if ESIMD files are not changed. --- .github/workflows/sycl-linux-precommit.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/sycl-linux-precommit.yml b/.github/workflows/sycl-linux-precommit.yml index 038b284f92736..b354112f5ffe4 100644 --- a/.github/workflows/sycl-linux-precommit.yml +++ b/.github/workflows/sycl-linux-precommit.yml @@ -162,6 +162,7 @@ jobs: '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'}} + env: ${{ contains(needs.detect_changes.outputs.filters, 'esimd') || '{"LIT_FILTER_OUT":"ESIMD/"}' }} test-perf: needs: [build, detect_changes] From a2a93ff13d14a10a0988ccdd19989e4889a3fb92 Mon Sep 17 00:00:00 2001 From: Udit Kumar Agarwal Date: Mon, 16 Jun 2025 14:32:33 -0700 Subject: [PATCH 2/2] Update sycl-linux-precommit.yml --- .github/workflows/sycl-linux-precommit.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/sycl-linux-precommit.yml b/.github/workflows/sycl-linux-precommit.yml index b354112f5ffe4..0efabfeb2b396 100644 --- a/.github/workflows/sycl-linux-precommit.yml +++ b/.github/workflows/sycl-linux-precommit.yml @@ -162,7 +162,7 @@ jobs: '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'}} - env: ${{ contains(needs.detect_changes.outputs.filters, 'esimd') || '{"LIT_FILTER_OUT":"ESIMD/"}' }} + env: ${{ contains(needs.detect_changes.outputs.filters, 'esimd') && '{}' || '{"LIT_FILTER_OUT":"ESIMD/"}' }} test-perf: needs: [build, detect_changes]