retry hw test

This commit is contained in:
hathach 2023-05-26 17:15:54 +07:00
parent 7fb74a33a1
commit c88e7481be
No known key found for this signature in database
GPG Key ID: F5D50C6D51D17CBA
1 changed files with 5 additions and 1 deletions

View File

@ -74,7 +74,11 @@ jobs:
# Upload binaries for hardware test with self-hosted
- name: Prepare rp2040 Artifacts
if: contains(matrix.family, 'rp2040') && github.repository_owner == 'hathach'
run: find examples/ -name "*.elf" -exec mv {} . \;
working-directory: ${{github.workspace}}/cmake-build-ci-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
if: contains(matrix.family,'rp2040') && github.repository_owner == 'hathach'