From dbfa0da5304d3f9064788e9b1a0bba3730f8a2b6 Mon Sep 17 00:00:00 2001 From: Andrei Elovikov Date: Wed, 24 Apr 2024 09:53:21 -0700 Subject: [PATCH] Use single [] --- .github/workflows/sycl-linux-run-tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/sycl-linux-run-tests.yml b/.github/workflows/sycl-linux-run-tests.yml index 1e62b2d5d067b..cff78cd280550 100644 --- a/.github/workflows/sycl-linux-run-tests.yml +++ b/.github/workflows/sycl-linux-run-tests.yml @@ -310,7 +310,7 @@ jobs: $CMAKE_EXTRA_ARGS # Ignore errors so that if one category build fails others still have a # chance to finish and be executed at the run stage. - ninja -C build-cts -k0 $( [[ -n "$CTS_TESTS_TO_BUILD" ]] && echo "$CTS_TESTS_TO_BUILD" || echo "test_conformance") + ninja -C build-cts -k0 $( [ -n "$CTS_TESTS_TO_BUILD" ] && echo "$CTS_TESTS_TO_BUILD" || echo "test_conformance") - name: SYCL CTS List devices # Proceed with execution even if the 'build' step did not succeed.