Skip to content

Commit 867fc5a

Browse files
committed
Attempt to correct syntax
1 parent d5a9468 commit 867fc5a

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

.github/workflows/sycl-linux-run-tests.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,7 @@ permissions:
195195
jobs:
196196
run:
197197
if: github.event_name == 'workflow_dispatch' || inputs.skip_run == 'false'
198-
needs: ${{ inputs.test_selector == 'benchmark' && ['benchmark_aggregate'] || [] }}
198+
needs: ${{ inputs.test_selector == 'benchmark' && "['benchmark_aggregate']" || "[]" }}
199199
name: ${{ inputs.name }}
200200
runs-on: ${{ fromJSON(inputs.runner) }}
201201
container:
@@ -363,9 +363,7 @@ jobs:
363363
cts_exclude_filter=""
364364
# If CTS_TESTS_TO_BUILD is null - use filter
365365
if [ -z "$CTS_TESTS_TO_BUILD" ]; then
366-
if [ "${{ contains(inputs.cts_testing_mode, 'build-only') }}" = "true" ]; then
367-
cts_exclude_filter=$PWD/devops/cts_exclude_filter_compfails
368-
elif [ "${{ contains(inputs.target_devices, 'opencl:cpu') }}" = "true" ]; then
366+
if [ "${{ contains(inputs.target_devices, 'opencl:cpu') }}" = "true" ]; then
369367
cts_exclude_filter=$PWD/devops/cts_exclude_filter_OCL_CPU
370368
elif [ "${{ contains(inputs.target_devices, 'level_zero:gpu') }}" = "true" ]; then
371369
cts_exclude_filter=$PWD/devops/cts_exclude_filter_L0_GPU

0 commit comments

Comments
 (0)