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