Skip to content

Commit 18fa0bb

Browse files
committed
Add logging of generated file
1 parent 65d7ad5 commit 18fa0bb

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
@@ -221,10 +221,17 @@ jobs:
221221
cp /home/runner/Arduino/libraries/Adafruit_LittlevGL_Glue_Library/lv_conf.h /home/runner/Arduino/libraries
222222
- name: Build Dependencies Header file for ESP32-SX
223223
run: |
224+
echo $(pwd)
224225
python3 ci/build_platform.py ${{ matrix.arduino-platform }} --build_timeout 48000 --print_dependencies_as_header
225226
mv print_dependencies.h src/print_dependencies.h
227+
echo "--Contents of print_dependencies.h:"
228+
cat src/print_dependencies.h
229+
echo "--End of print_dependencies.h"
230+
echo $(pwd)
226231
- name: Build for ESP32-SX
227-
run: python3 ci/build_platform.py ${{ matrix.arduino-platform }} --build_timeout 48000 --include_print_dependencies_header
232+
run: |
233+
echo $(pwd)
234+
python3 ci/build_platform.py ${{ matrix.arduino-platform }} --build_timeout 48000 --include_print_dependencies_header
228235
- name: list
229236
run: |
230237
ls

0 commit comments

Comments
 (0)