Skip to content

Commit b7b1852

Browse files
authored
Fixed job deps condition
1 parent 857e0cb commit b7b1852

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/sycl_linux_build_and_test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -198,7 +198,7 @@ jobs:
198198
needs: [build, aws-start]
199199
# Continue if build was successful. If aws-start is not successful all
200200
# AWS tasks will fail, but all non-AWS tasks should continue.
201-
if: ${{ always() && (needs.build.outputs.job_status=='success') && inputs.lts_matrix != '[]' }}
201+
if: ${{ always() && needs.build.result == 'success' && inputs.lts_matrix != '[]' }}
202202
strategy:
203203
fail-fast: false
204204
max-parallel: ${{ inputs.max_parallel }}

0 commit comments

Comments
 (0)