From b8803d533edc77425c779198147aae386f4e3d10 Mon Sep 17 00:00:00 2001 From: Jinsong Ji Date: Wed, 1 May 2024 04:54:13 +0200 Subject: [PATCH] Fix the order --- .github/workflows/sycl-linux-precommit.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/sycl-linux-precommit.yml b/.github/workflows/sycl-linux-precommit.yml index 4bfe06b275b7f..45a45ce894e71 100644 --- a/.github/workflows/sycl-linux-precommit.yml +++ b/.github/workflows/sycl-linux-precommit.yml @@ -60,10 +60,10 @@ jobs: - name: Determine Arc tests id: arc_tests run: | - if [ "${{ contains(needs.detect_changes.outputs.filters, 'drivers') }}" == "true" ]; then - echo 'arc_tests=""' >> "$GITHUB_OUTPUT" - elif [ "${{ contains(needs.detect_changes.outputs.filters, 'devigccfg') }}" == "true" ]; then + if [ "${{ contains(needs.detect_changes.outputs.filters, 'devigccfg') }}" == "true" ]; then echo 'arc_tests="Matrix/"' >> "$GITHUB_OUTPUT" + elif [ "${{ contains(needs.detect_changes.outputs.filters, 'drivers') }}" == "true" ]; then + echo 'arc_tests=""' >> "$GITHUB_OUTPUT" elif [ "${{ contains(needs.detect_changes.outputs.filters, 'esimd') }}" == "true" ]; then echo 'arc_tests="(ESIMD|InvokeSimd|Matrix)/"' >> "$GITHUB_OUTPUT" else