@@ -129,7 +129,10 @@ jobs:
129
129
e2e-test-linux :
130
130
name : Linux end-to-end tests
131
131
needs : [prepare-matrices, build-linux]
132
- if : ${{ !cancelled() && (needs.prepare-matrices.outputs.linux_matrix != '[]' && needs.prepare-matrices.outputs.linux_matrix != '') }}
132
+ if : |
133
+ !cancelled() &&
134
+ needs.prepare-matrices.outputs.linux_matrix != '[]' &&
135
+ needs.prepare-matrices.outputs.linux_matrix != ''
133
136
runs-on : [self-hosted, desktop-test, Linux] # app-test-linux
134
137
timeout-minutes : 240
135
138
strategy :
@@ -200,7 +203,10 @@ jobs:
200
203
201
204
e2e-test-windows :
202
205
needs : [prepare-matrices, build-windows]
203
- if : ${{ !cancelled() && (needs.prepare-matrices.outputs.windows_matrix != '[]' && needs.prepare-matrices.outputs.windows_matrix != '') }}
206
+ if : |
207
+ !cancelled() &&
208
+ needs.prepare-matrices.outputs.windows_matrix != '[]' &&
209
+ needs.prepare-matrices.outputs.windows_matrix != ''
204
210
name : Windows end-to-end tests
205
211
runs-on : [self-hosted, desktop-test, Linux] # app-test-linux
206
212
timeout-minutes : 240
@@ -268,7 +274,10 @@ jobs:
268
274
269
275
e2e-test-macos :
270
276
needs : [prepare-matrices, build-macos]
271
- if : ${{ !cancelled() && (needs.prepare-matrices.outputs.macos_matrix != '[]' && needs.prepare-matrices.outputs.macos_matrix != '') }}
277
+ if : |
278
+ !cancelled() &&
279
+ needs.prepare-matrices.outputs.macos_matrix != '[]' &&
280
+ needs.prepare-matrices.outputs.macos_matrix != ''
272
281
name : macOS end-to-end tests
273
282
runs-on : [self-hosted, desktop-test, macOS] # app-test-macos-arm
274
283
timeout-minutes : 240
0 commit comments