Skip to content

Commit 79550db

Browse files
committed
Add logging of generated file
1 parent b9d18a1 commit 79550db

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

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

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -212,10 +212,17 @@ jobs:
212212
cp /home/runner/Arduino/libraries/Adafruit_LittlevGL_Glue_Library/lv_conf.h /home/runner/Arduino/libraries
213213
- name: Build Dependencies Header file for ESP32-SX
214214
run: |
215+
echo $(pwd)
215216
python3 ci/build_platform.py ${{ matrix.arduino-platform }} --build_timeout 48000 --print_dependencies_as_header
216217
mv print_dependencies.h src/print_dependencies.h
218+
echo "--Contents of print_dependencies.h:"
219+
cat src/print_dependencies.h
220+
echo "--End of print_dependencies.h"
221+
echo $(pwd)
217222
- name: Build for ESP32-SX
218-
run: python3 ci/build_platform.py ${{ matrix.arduino-platform }} --build_timeout 48000 --include_print_dependencies_header
223+
run: |
224+
echo $(pwd)
225+
python3 ci/build_platform.py ${{ matrix.arduino-platform }} --build_timeout 48000 --include_print_dependencies_header
219226
- name: list
220227
run: |
221228
ls

0 commit comments

Comments
 (0)