Skip to content

Commit 041422f

Browse files
authored
[CI] Fix cts actions (#20808)
remove leftover parentheses
1 parent 2342a56 commit 041422f

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

devops/actions/run-tests/cts/action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ runs:
9595
9696
- name: SYCL CTS List devices
9797
# Proceed with execution even if the 'build' step did not succeed.
98-
if: ${{ !cancelled()) && inputs.testing_mode != 'build-only' }}
98+
if: ${{ !cancelled() && inputs.testing_mode != 'build-only' }}
9999
shell: bash
100100
env:
101101
ONEAPI_DEVICE_SELECTOR: ${{ inputs.target_devices }}
@@ -129,7 +129,7 @@ runs:
129129
130130
- name: Run SYCL CTS tests
131131
# Proceed with execution even if the previous two steps did not succeed.
132-
if: ${{ !cancelled()) && inputs.testing_mode != 'build-only' }}
132+
if: ${{ !cancelled() && inputs.testing_mode != 'build-only' }}
133133
env:
134134
ONEAPI_DEVICE_SELECTOR: ${{ inputs.target_devices }}
135135
# By-default GitHub actions execute the "run" shell script with -e option,

devops/actions/run-tests/windows/cts/action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ runs:
9797
9898
- name: SYCL CTS List devices
9999
# Proceed with execution even if the 'build' step did not succeed.
100-
if: ${{ !cancelled()) && inputs.testing_mode != 'build-only' }}
100+
if: ${{ !cancelled() && inputs.testing_mode != 'build-only' }}
101101
shell: bash
102102
env:
103103
ONEAPI_DEVICE_SELECTOR: ${{ inputs.target_devices }}
@@ -131,7 +131,7 @@ runs:
131131
132132
- name: Run SYCL CTS tests
133133
# Proceed with execution even if the previous two steps did not succeed.
134-
if: ${{ !cancelled()) && inputs.testing_mode != 'build-only' }}
134+
if: ${{ !cancelled() && inputs.testing_mode != 'build-only' }}
135135
env:
136136
ONEAPI_DEVICE_SELECTOR: ${{ inputs.target_devices }}
137137
# By-default GitHub actions execute the "run" shell script with -e option,

0 commit comments

Comments
 (0)