Skip to content

Commit ec4e48b

Browse files
committed
CI: Fix continue-on-error usage
1 parent a8be947 commit ec4e48b

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

.github/workflows/build-clang-doxy.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ jobs:
2020
build-esp32sx-esptool:
2121
name: 🏗️ESP32-Sx(lvgl)
2222
runs-on: ubuntu-latest
23-
continue-on-error: true
2423
strategy:
2524
fail-fast: false
2625
matrix:
@@ -36,6 +35,7 @@ jobs:
3635
arduino-platform: "funhouse_noota"
3736
steps:
3837
- name: "skip if unwanted"
38+
continue-on-error: true
3939
if: |
4040
github.event_name == 'workflow_dispatch' &&
4141
github.event.inputs.board != '' &&
@@ -195,7 +195,6 @@ jobs:
195195
build-esp32sx:
196196
name: 🏗️ESP32-Sx
197197
runs-on: ubuntu-latest
198-
continue-on-error: true
199198
strategy:
200199
fail-fast: false
201200
matrix:
@@ -217,6 +216,7 @@ jobs:
217216
]
218217
steps:
219218
- name: "skip if unwanted"
219+
continue-on-error: true
220220
if: |
221221
github.event_name == 'workflow_dispatch' &&
222222
github.event.inputs.board != '' &&
@@ -307,7 +307,6 @@ jobs:
307307
build-esp32:
308308
name: 🏗️ESP32/Cx
309309
runs-on: ubuntu-latest
310-
continue-on-error: true
311310
strategy:
312311
fail-fast: false
313312
matrix:
@@ -330,6 +329,7 @@ jobs:
330329
arduino-platform: "wippersnapper_feather_esp32c6"
331330
steps:
332331
- name: "skip if unwanted"
332+
continue-on-error: true
333333
if: |
334334
github.event_name == 'workflow_dispatch' &&
335335
github.event.inputs.board != '' &&
@@ -456,7 +456,6 @@ jobs:
456456
build-samd:
457457
name: 🏗️SAMD
458458
runs-on: ubuntu-latest
459-
continue-on-error: true
460459
strategy:
461460
fail-fast: false
462461
matrix:
@@ -468,6 +467,7 @@ jobs:
468467
]
469468
steps:
470469
- name: "skip if unwanted"
470+
continue-on-error: true
471471
if: |
472472
github.event_name == 'workflow_dispatch' &&
473473
github.event.inputs.board != '' &&
@@ -543,13 +543,13 @@ jobs:
543543
build-rp2040:
544544
name: 🏗️RP2040
545545
runs-on: ubuntu-latest
546-
continue-on-error: true
547546
strategy:
548547
fail-fast: false
549548
matrix:
550549
arduino-platform: ["picow_rp2040_tinyusb", "picow_rp2350_tinyusb"]
551550
steps:
552551
- name: "skip if unwanted"
552+
continue-on-error: true
553553
if: |
554554
github.event_name == 'workflow_dispatch' &&
555555
github.event.inputs.board != '' &&
@@ -622,13 +622,13 @@ jobs:
622622
build-esp8266:
623623
name: 🏗️ESP8266
624624
runs-on: ubuntu-latest
625-
continue-on-error: true
626625
strategy:
627626
fail-fast: false
628627
matrix:
629628
arduino-platform: ["feather_esp8266"]
630629
steps:
631630
- name: "skip if unwanted"
631+
continue-on-error: true
632632
if: |
633633
github.event_name == 'workflow_dispatch' &&
634634
github.event.inputs.board != '' &&
@@ -708,7 +708,6 @@ jobs:
708708
build-esp32sx-dev:
709709
name: 🏗️ESP32-Sx(DEV)
710710
runs-on: ubuntu-latest
711-
continue-on-error: true
712711
strategy:
713712
fail-fast: false
714713
matrix:
@@ -726,6 +725,7 @@ jobs:
726725
]
727726
steps:
728727
- name: "skip if unwanted"
728+
continue-on-error: true
729729
if: |
730730
github.event_name == 'workflow_dispatch' &&
731731
github.event.inputs.board != '' &&
@@ -816,7 +816,6 @@ jobs:
816816
build-esp32-dev:
817817
name: 🏗️ESP32/Cx(DEV)
818818
runs-on: ubuntu-latest
819-
continue-on-error: true
820819
strategy:
821820
fail-fast: false
822821
matrix:
@@ -830,6 +829,7 @@ jobs:
830829
arduino-platform: "wippersnapper_feather_esp32c6_debug"
831830
steps:
832831
- name: "skip if unwanted"
832+
continue-on-error: true
833833
if: |
834834
github.event_name == 'workflow_dispatch' &&
835835
github.event.inputs.board != '' &&

0 commit comments

Comments
 (0)