Skip to content

Commit

Permalink
WIP: test ls -R (checking for elfs) + cp elfs
Browse files Browse the repository at this point in the history
  • Loading branch information
tyeth committed Feb 7, 2024
1 parent e8dca25 commit 75f9a3d
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions .github/workflows/build-clang-doxy.yml
Expand Up @@ -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: |
Expand Down Expand Up @@ -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: |
Expand Down Expand Up @@ -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: |
Expand Down Expand Up @@ -473,21 +474,23 @@ 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.elf wippersnapper.${{ matrix.arduino-platform }}.${{ env.WS_VERSION }}.elf
mv examples/*/build/*/wippersnapper_debug.ino.map wippersnapper.${{ matrix.arduino-platform }}.${{ env.WS_VERSION }}.map
- name: upload build artifacts
uses: actions/upload-artifact@v3
with:
name: build-files-dev
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
wippersnapper.${{ matrix.arduino-platform }}.${{ env.WS_VERSION }}.map
clang_and_doxy:
runs-on: ubuntu-latest
Expand Down

0 comments on commit 75f9a3d

Please sign in to comment.