We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7fb74a3 commit c88e748Copy full SHA for c88e748
.github/workflows/cmake_arm.yml
@@ -74,7 +74,11 @@ jobs:
74
# Upload binaries for hardware test with self-hosted
75
- name: Prepare rp2040 Artifacts
76
if: contains(matrix.family, 'rp2040') && github.repository_owner == 'hathach'
77
- run: find examples/ -name "*.elf" -exec mv {} . \;
+ working-directory: ${{github.workspace}}/cmake-build-ci-raspberry_pi_pico
78
+ run: |
79
+ find device/ -name "*.elf" -exec mv {} . \;
80
+ # find host/ -name "*.elf" -exec mv {} . \;
81
+ # find dual/ -name "*.elf" -exec mv {} . \;
82
83
- name: Upload Artifacts for rp2040
84
if: contains(matrix.family,'rp2040') && github.repository_owner == 'hathach'
0 commit comments