File tree 3 files changed +9
-5
lines changed 3 files changed +9
-5
lines changed Original file line number Diff line number Diff line change 84
84
fi
85
85
86
86
info ' Linting workflows...'
87
- ./actionlint -color || EXIT_CODE=1
87
+ ./actionlint -color -ignore ' "runs-on" section must be sequence node but got mapping node with "!!map" tag ' || EXIT_CODE=1
88
88
if [[ " $EXIT_CODE " == 0 ]]; then
89
89
success ' Workflows passed actionlint!'
90
90
fi
Original file line number Diff line number Diff line change 29
29
name : Build and deploy Android
30
30
needs : validateActor
31
31
if : ${{ fromJSON(needs.validateActor.outputs.IS_DEPLOYER) }}
32
- runs-on : ubuntu-latest-16-cores
32
+ runs-on :
33
+ labels : ubuntu-latest-16-cores
33
34
steps :
34
35
# This action checks-out the repository, so the workflow can access it.
35
36
- uses : actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8
@@ -239,7 +240,8 @@ jobs:
239
240
name : Build and deploy Web
240
241
needs : validateActor
241
242
if : ${{ fromJSON(needs.validateActor.outputs.IS_DEPLOYER) }}
242
- runs-on : ubuntu-latest-16-cores
243
+ runs-on :
244
+ labels : ubuntu-latest-16-cores
243
245
steps :
244
246
# This action checks-out the repository, so the workflow can access it.
245
247
- uses : actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8
Original file line number Diff line number Diff line change 62
62
name : Build and deploy Android for testing
63
63
needs : [validateActor, getBranchRef]
64
64
if : ${{ fromJSON(needs.validateActor.outputs.READY_TO_BUILD) }}
65
- runs-on : ubuntu-latest-16-cores
65
+ runs-on :
66
+ labels : ubuntu-latest-16-cores
66
67
env :
67
68
PULL_REQUEST_NUMBER : ${{ github.event.number || github.event.inputs.PULL_REQUEST_NUMBER }}
68
69
steps :
@@ -232,7 +233,8 @@ jobs:
232
233
if : ${{ fromJSON(needs.validateActor.outputs.READY_TO_BUILD) }}
233
234
env :
234
235
PULL_REQUEST_NUMBER : ${{ github.event.number || github.event.inputs.PULL_REQUEST_NUMBER }}
235
- runs-on : ubuntu-latest-16-cores
236
+ runs-on :
237
+ labels : ubuntu-latest-16-cores
236
238
steps :
237
239
- uses : actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8
238
240
with :
You can’t perform that action at this time.
0 commit comments