@@ -96,15 +96,14 @@ jobs:
96
96
with :
97
97
cp-version : ${{ needs.scheduler.outputs.cp-version }}
98
98
99
-
100
99
mpy-cross :
101
100
needs : scheduler
102
101
if : needs.scheduler.outputs.build-boards == 'True'
103
102
uses : ./.github/workflows/build-mpy-cross.yml
103
+ secrets : inherit
104
104
with :
105
105
cp-version : ${{ needs.scheduler.outputs.cp-version }}
106
106
107
-
108
107
mpy-cross-mac :
109
108
runs-on : macos-11
110
109
needs : scheduler
@@ -223,41 +222,41 @@ jobs:
223
222
[ -z "$TWINE_USERNAME" ] || echo "Uploading dev release to PyPi"
224
223
[ -z "$TWINE_USERNAME" ] || twine upload circuitpython-stubs/dist/*
225
224
226
-
227
225
aarch :
228
226
needs : [scheduler, mpy-cross, tests]
229
227
if : ${{ needs.scheduler.outputs.boards-aarch != '[]' }}
230
228
uses : ./.github/workflows/build-boards.yml
229
+ secrets : inherit
231
230
with :
232
231
platform : aarch
233
232
boards : ${{ needs.scheduler.outputs.boards-aarch }}
234
233
cp-version : ${{ needs.scheduler.outputs.cp-version }}
235
234
236
-
237
235
arm :
238
236
needs : [scheduler, mpy-cross, tests]
239
237
if : ${{ needs.scheduler.outputs.boards-arm != '[]' }}
240
238
uses : ./.github/workflows/build-boards.yml
239
+ secrets : inherit
241
240
with :
242
241
platform : arm
243
242
boards : ${{ needs.scheduler.outputs.boards-arm }}
244
243
cp-version : ${{ needs.scheduler.outputs.cp-version }}
245
244
246
-
247
245
esp :
248
246
needs : [scheduler, mpy-cross, tests]
249
247
if : ${{ needs.scheduler.outputs.boards-esp != '[]' }}
250
248
uses : ./.github/workflows/build-boards.yml
249
+ secrets : inherit
251
250
with :
252
251
platform : esp
253
252
boards : ${{ needs.scheduler.outputs.boards-esp }}
254
253
cp-version : ${{ needs.scheduler.outputs.cp-version }}
255
254
256
-
257
255
riscv :
258
256
needs : [scheduler, mpy-cross, tests]
259
257
if : ${{ needs.scheduler.outputs.boards-riscv != '[]' }}
260
258
uses : ./.github/workflows/build-boards.yml
259
+ secrets : inherit
261
260
with :
262
261
platform : riscv
263
262
boards : ${{ needs.scheduler.outputs.boards-riscv }}
@@ -267,6 +266,7 @@ jobs:
267
266
needs : [scheduler, mpy-cross, tests]
268
267
if : ${{ needs.scheduler.outputs.boards-rpi != '[]' }}
269
268
uses : ./.github/workflows/build-boards.yml
269
+ secrets : inherit
270
270
with :
271
271
platform : arm
272
272
boards : ${{ needs.scheduler.outputs.boards-rpi }}
0 commit comments