Skip to content

Commit b69363f

Browse files
authored
update if to be echo step
1 parent 44be678 commit b69363f

File tree

1 file changed

+32
-8
lines changed

1 file changed

+32
-8
lines changed

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

Lines changed: 32 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -27,11 +27,14 @@ jobs:
2727
include:
2828
- offset: "0x1000"
2929
steps:
30-
- uses: actions/setup-python@v5
30+
- name: "skip if unwanted"
3131
if: |
3232
github.event_name != 'workflow_dispatch' ||
3333
github.event.inputs.board == '' ||
3434
matrix.arduino-platform == github.event.inputs.board
35+
run: |
36+
echo "build this one!"
37+
- uses: actions/setup-python@v5
3538
with:
3639
python-version: "3.x"
3740
- uses: actions/checkout@v4
@@ -203,11 +206,14 @@ jobs:
203206
"qtpy_esp32s3_n4r2",
204207
]
205208
steps:
206-
- uses: actions/setup-python@v5
209+
- name: "skip if unwanted"
207210
if: |
208211
github.event_name != 'workflow_dispatch' ||
209212
github.event.inputs.board == '' ||
210213
matrix.arduino-platform == github.event.inputs.board
214+
run: |
215+
echo "build this one!"
216+
- uses: actions/setup-python@v5
211217
with:
212218
python-version: "3.x"
213219
- uses: actions/checkout@v4
@@ -312,11 +318,14 @@ jobs:
312318
- offset: "0x0"
313319
arduino-platform: "wippersnapper_feather_esp32c6"
314320
steps:
315-
- uses: actions/setup-python@v5
321+
- name: "skip if unwanted"
316322
if: |
317323
github.event_name != 'workflow_dispatch' ||
318324
github.event.inputs.board == '' ||
319325
matrix.arduino-platform == github.event.inputs.board
326+
run: |
327+
echo "build this one!"
328+
- uses: actions/setup-python@v5
320329
with:
321330
python-version: "3.x"
322331
- uses: actions/checkout@v4
@@ -446,11 +455,14 @@ jobs:
446455
"metro_m4_airliftlite_tinyusb",
447456
]
448457
steps:
449-
- uses: actions/setup-python@v5
458+
- name: "skip if unwanted"
450459
if: |
451460
github.event_name != 'workflow_dispatch' ||
452461
github.event.inputs.board == '' ||
453462
matrix.arduino-platform == github.event.inputs.board
463+
run: |
464+
echo "build this one!"
465+
- uses: actions/setup-python@v5
454466
with:
455467
python-version: "3.x"
456468
- uses: actions/checkout@v4
@@ -524,11 +536,14 @@ jobs:
524536
matrix:
525537
arduino-platform: ["picow_rp2040_tinyusb", "picow_rp2350_tinyusb"]
526538
steps:
527-
- uses: actions/setup-python@v5
539+
- name: "skip if unwanted"
528540
if: |
529541
github.event_name != 'workflow_dispatch' ||
530542
github.event.inputs.board == '' ||
531543
matrix.arduino-platform == github.event.inputs.board
544+
run: |
545+
echo "build this one!"
546+
- uses: actions/setup-python@v5
532547
with:
533548
python-version: "3.x"
534549
- uses: actions/checkout@v4
@@ -599,11 +614,14 @@ jobs:
599614
matrix:
600615
arduino-platform: ["feather_esp8266"]
601616
steps:
602-
- uses: actions/setup-python@v5
617+
- name: "skip if unwanted"
603618
if: |
604619
github.event_name != 'workflow_dispatch' ||
605620
github.event.inputs.board == '' ||
606621
matrix.arduino-platform == github.event.inputs.board
622+
run: |
623+
echo "build this one!"
624+
- uses: actions/setup-python@v5
607625
with:
608626
python-version: "3.x"
609627
- uses: actions/checkout@v4
@@ -691,11 +709,14 @@ jobs:
691709
"metro_esp32s3_debug",
692710
]
693711
steps:
694-
- uses: actions/setup-python@v5
712+
- name: "skip if unwanted"
695713
if: |
696714
github.event_name != 'workflow_dispatch' ||
697715
github.event.inputs.board == '' ||
698716
matrix.arduino-platform == github.event.inputs.board
717+
run: |
718+
echo "build this one!"
719+
- uses: actions/setup-python@v5
699720
with:
700721
python-version: "3.x"
701722
- uses: actions/checkout@v4
@@ -791,11 +812,14 @@ jobs:
791812
- offset: "0x0"
792813
arduino-platform: "wippersnapper_feather_esp32c6_debug"
793814
steps:
794-
- uses: actions/setup-python@v5
815+
- name: "skip if unwanted"
795816
if: |
796817
github.event_name != 'workflow_dispatch' ||
797818
github.event.inputs.board == '' ||
798819
matrix.arduino-platform == github.event.inputs.board
820+
run: |
821+
echo "build this one!"
822+
- uses: actions/setup-python@v5
799823
with:
800824
python-version: "3.x"
801825
- uses: actions/checkout@v4

0 commit comments

Comments
 (0)