From 2baec335b2e469df40c53cb6503e0b3f89a02fa1 Mon Sep 17 00:00:00 2001 From: tyeth Date: Wed, 7 Feb 2024 11:02:46 +0000 Subject: [PATCH] WIP: test ls -R (checking for elfs) + cp elfs --- .github/workflows/build-clang-doxy.yml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build-clang-doxy.yml b/.github/workflows/build-clang-doxy.yml index 44e769ea..d53fd5bc 100644 --- a/.github/workflows/build-clang-doxy.yml +++ b/.github/workflows/build-clang-doxy.yml @@ -75,7 +75,7 @@ jobs: run: python3 ci/build_platform.py ${{ matrix.arduino-platform }} --build_timeout 48000 - name: list run: | - ls + ls -R ls examples/*/build/ - name: Rename build artifacts to reflect the platform name run: | @@ -145,6 +145,7 @@ jobs: run: python3 ci/build_platform.py ${{ matrix.arduino-platform }} --build_timeout 48000 - name: Check artifacts run: | + ls -R ls examples/Wippersnapper_demo/build/* - name: Rename build artifacts to reflect the platform name run: | @@ -397,7 +398,7 @@ jobs: run: python3 ci/build_platform.py ${{ matrix.arduino-platform }} --build_timeout 48000 - name: list build artifacts run: | - ls + ls -R ls examples/* - name: Rename build artifacts to reflect the platform name run: | @@ -473,12 +474,13 @@ jobs: run: python3 ci/build_platform.py ${{ matrix.arduino-platform }} --build_timeout 48000 - name: list run: | - ls + ls -R ls examples/*/build/ - name: Rename build artifacts to reflect the platform name run: | mv examples/*/build/*/wippersnapper_debug.ino.uf2 wippersnapper.${{ matrix.arduino-platform }}.${{ env.WS_VERSION }}.uf2 mv examples/*/build/*/wippersnapper_debug.ino.bin wippersnapper.${{ matrix.arduino-platform }}.${{ env.WS_VERSION }}.bin + mv examples/*/build/*/wippersnapper_debug.ino.bin wippersnapper.${{ matrix.arduino-platform }}.${{ env.WS_VERSION }}.elf - name: upload build artifacts uses: actions/upload-artifact@v3 with: @@ -486,6 +488,7 @@ jobs: path: | wippersnapper.${{ matrix.arduino-platform }}.${{ env.WS_VERSION }}.uf2 wippersnapper.${{ matrix.arduino-platform }}.${{ env.WS_VERSION }}.bin + wippersnapper.${{ matrix.arduino-platform }}.${{ env.WS_VERSION }}.elf