File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change 39
39
lts_matrix :
40
40
type : string
41
41
required : false
42
- default : " "
42
+ default : " [] "
43
43
lts_aws_matrix :
44
44
type : string
45
45
required : false
46
- default : " "
46
+ default : " [] "
47
47
lts_cmake_extra_args :
48
48
type : string
49
49
required : false
@@ -162,7 +162,7 @@ jobs:
162
162
aws-start :
163
163
name : Start AWS
164
164
needs : build
165
- if : ${{ inputs.lts_aws_matrix != '' }}
165
+ if : ${{ inputs.lts_aws_matrix != '[] ' }}
166
166
runs-on : ubuntu-latest
167
167
environment : aws
168
168
steps :
@@ -183,7 +183,7 @@ jobs:
183
183
184
184
llvm_test_suite :
185
185
needs : [build, aws-start]
186
- if : ${{ !failure() && inputs.lts_matrix != '' }}
186
+ if : ${{ !failure() && inputs.lts_matrix != '[] ' }}
187
187
strategy :
188
188
fail-fast : false
189
189
max-parallel : ${{ inputs.max_parallel }}
@@ -234,7 +234,7 @@ jobs:
234
234
aws-stop :
235
235
name : Stop AWS
236
236
needs : [ aws-start, llvm_test_suite ]
237
- if : ${{ always() && inputs.lts_aws_matrix != '' }}
237
+ if : ${{ always() && inputs.lts_aws_matrix != '[] ' }}
238
238
runs-on : ubuntu-latest
239
239
environment : aws
240
240
steps :
You can’t perform that action at this time.
0 commit comments