mirror of
https://github.com/hathach/tinyusb.git
synced 2025-03-25 01:43:47 +00:00
test changing upload artifacts for hil test
This commit is contained in:
parent
338ff2daba
commit
fd55b96ca1
13
.github/workflows/build_esp.yml
vendored
13
.github/workflows/build_esp.yml
vendored
@ -48,3 +48,16 @@ jobs:
|
||||
|
||||
- name: Build
|
||||
run: docker run --rm -v $PWD:/project -w /project espressif/idf:latest python3 tools/build_esp32.py ${{ matrix.board }}
|
||||
|
||||
- name: test dir
|
||||
run: tree
|
||||
|
||||
- name: Upload Artifacts for Hardware Testing
|
||||
if: matrix.board == 'espressif_s3_devkitc' && github.repository_owner == 'hathach'
|
||||
uses: actions/upload-artifact@v3
|
||||
with:
|
||||
name: ${{ matrix.board }}
|
||||
path: |
|
||||
cmake-build/cmake-build-${{ matrix.board }}/device/*/*.elf
|
||||
cmake-build/cmake-build-${{ matrix.board }}/device/*/config.env
|
||||
cmake-build/cmake-build-${{ matrix.board }}/device/*/flash_args
|
||||
|
18
.github/workflows/cmake_arm.yml
vendored
18
.github/workflows/cmake_arm.yml
vendored
@ -87,21 +87,21 @@ jobs:
|
||||
PICO_SDK_PATH: ${{ github.workspace }}/pico-sdk
|
||||
|
||||
# Upload binaries for hardware test with self-hosted
|
||||
- name: Prepare rp2040 Artifacts
|
||||
if: contains(matrix.family, 'rp2040') && github.repository_owner == 'hathach'
|
||||
working-directory: ${{github.workspace}}/cmake-build/cmake-build-raspberry_pi_pico
|
||||
run: |
|
||||
find device/ -name "*.elf" -exec mv {} ../../ \;
|
||||
# find host/ -name "*.elf" -exec mv {} ../../ \;
|
||||
# find dual/ -name "*.elf" -exec mv {} ../../ \;
|
||||
# - name: Prepare rp2040 Artifacts
|
||||
# if: contains(matrix.family, 'rp2040') && github.repository_owner == 'hathach'
|
||||
# working-directory: ${{github.workspace}}/cmake-build/cmake-build-raspberry_pi_pico
|
||||
# run: |
|
||||
# find device/ -name "*.elf" -exec mv {} ../../ \;
|
||||
# # find host/ -name "*.elf" -exec mv {} ../../ \;
|
||||
# # find dual/ -name "*.elf" -exec mv {} ../../ \;
|
||||
|
||||
- name: Upload Artifacts for rp2040
|
||||
- name: Upload Artifacts for Hardware Testing
|
||||
if: contains(matrix.family,'rp2040') && github.repository_owner == 'hathach'
|
||||
uses: actions/upload-artifact@v3
|
||||
with:
|
||||
name: rp2040
|
||||
path: |
|
||||
*.elf
|
||||
cmake-build/cmake-build-raspberry_pi_pico/device/*/*.elf
|
||||
|
||||
# ---------------------------------------
|
||||
# Hardware in the loop (HIL)
|
||||
|
Loading…
x
Reference in New Issue
Block a user