From b5321f026837a5ebf7096eb864534b85373d7dcb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=81ukasz=20Stolarczuk?= Date: Fri, 17 May 2024 15:33:12 +0200 Subject: [PATCH] [CI] Fix E2E tests Use test filters only when they are set, which is for L0. Otherwise we get 'error: filter did not match any tests'. --- .github/workflows/e2e_core.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/e2e_core.yml b/.github/workflows/e2e_core.yml index 4ff4f1cc1b..5695eac810 100644 --- a/.github/workflows/e2e_core.yml +++ b/.github/workflows/e2e_core.yml @@ -168,7 +168,8 @@ jobs: -DCMAKE_CXX_COMPILER="$(which clang++)" -DLLVM_LIT="${{github.workspace}}/sycl-repo/llvm/utils/lit/lit.py" - - name: Set test filters + - name: Set test filters for L0 + if: matrix.adapter.name == 'L0' run: | echo "LIT_XFAIL_NOT=${{inputs.xfail_not}}" >> $GITHUB_ENV echo "LIT_XFAIL=${{inputs.xfail}}" >> $GITHUB_ENV