8000 Add if pre-condition to builds · urish/circuitpython@832e608 · GitHub
[go: up one dir, main page]

Skip to content

Commit 832e608

Browse files
authored
Add if pre-condition to builds
1 parent 0ee0ed7 commit 832e608

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -228,6 +228,7 @@ jobs:
228228
fail-fast: false
229229
matrix:
230230
board: ${{ fromJSON(needs.test.outputs.arm-boards) }}
231+
if: ${{ needs.test.outputs.arm-boards != '[]' }}
231232

232233
steps:
233234
- name: Set up Python 3.8
@@ -278,6 +279,7 @@ jobs:
278279
fail-fast: false
279280
matrix:
280281
board: ${{ fromJSON(needs.test.outputs.riscv-boards) }}
282+
if: ${{ needs.test.outputs.riscv-boards != '[]' }}
281283

282284
steps:
283285
- name: Set up Python 3.8
@@ -327,6 +329,7 @@ jobs:
327329
fail-fast: false
328330
matrix:
329331
board: ${{ fromJSON(needs.test.outputs.xtensa-boards) }}
332+
if: ${{ needs.test.outputs.xtensa-boards != '[]' }}
330333

331334
steps:
332335
- name: Set up Python 3.8

0 commit comments

Comments
 (0)
0