Skip to content

Commit d286ff5

Browse files
committed
fix funhouse build checking paths
1 parent 47da594 commit d286ff5

File tree

1 file changed

+8
-3
lines changed

1 file changed

+8
-3
lines changed

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

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -98,14 +98,19 @@ jobs:
9898
echo $content
9999
echo EOF
100100
} >> "$GITHUB_OUTPUT"
101-
- name: list arduino esp32 core files
102-
run: |
103-
ls /home/runner/.arduino15/packages/esp32/hardware/esp32/*/tools/partitions
104101
- name: Check boot_app0 file existence (esp32sx built from core, not-source)
105102
id: check_files
106103
uses: andstor/file-existence-action@v2
107104
with:
108105
files: "/home/runner/.arduino15/packages/esp32/hardware/esp32/*/tools/partitions/boot_app0.bin"
106+
- name: list arduino esp32 core files
107+
if: steps.check_files.outputs.files_exists == 'true'
108+
run: |
109+
ls /home/runner/.arduino15/packages/esp32/hardware/esp32/*/tools/partitions
110+
- name: list arduino esp32 bsp core files
111+
if: steps.check_files.outputs.files_exists == 'false'
112+
run: |
113+
ls /home/runner/Arduino/hardware/espressif/esp32/tools/partitions
109114
- name: boot_app0 file from arduino-cli core
110115
if: steps.check_files.outputs.files_exists == 'true'
111116
run: mv /home/runner/.arduino15/packages/esp32/hardware/esp32/*/tools/partitions/boot_app0.bin wippersnapper.${{ matrix.arduino-platform }}.fatfs.${{ env.WS_VERSION }}.boot_app0.bin

0 commit comments

Comments
 (0)