test hw dfu_runtime

This commit is contained in:
hathach 2022-07-29 11:32:17 +07:00
parent aa8880c681
commit 4a47db97eb
No known key found for this signature in database
GPG Key ID: F5D50C6D51D17CBA
2 changed files with 8 additions and 4 deletions

View File

@ -108,11 +108,11 @@ jobs:
# Following steps are for Hardware Test with self-hosted
- name: Prepare Artifacts
if: matrix.family == 'rp2040'
if: matrix.family == 'rp2040' && github.repository_owner == 'hathach'
run: find examples/ -name "*.elf" -exec mv {} . \;
- name: Upload Artifacts for Hardware Test
if: matrix.family == 'rp2040'
if: matrix.family == 'rp2040' && github.repository_owner == 'hathach'
uses: actions/upload-artifact@v3
with:
name: ${{ matrix.family }}
@ -120,7 +120,7 @@ jobs:
*.elf
- name: Trigger Hardware Test
if: matrix.family == 'rp2040'
if: matrix.family == 'rp2040' && github.repository_owner == 'hathach'
uses: benc-uk/workflow-dispatch@v1
with:
workflow: Hardware Test

View File

@ -10,7 +10,6 @@ on:
jobs:
hw-test:
# Limit the run to only hathach due to limited resource on RPI4
#if: github.repository_owner == 'hathach' && ${{ github.event.workflow_run.conclusion == 'success' }}
if: github.repository_owner == 'hathach'
runs-on: [self-hosted, Linux, ARM64]
@ -57,3 +56,8 @@ jobs:
dfu-util -d cafe -a 1 -U dfu1
grep "TinyUSB DFU! - Partition 0" dfu0
grep "TinyUSB DFU! - Partition 1" dfu1
- name: Test dfu
run: |
./flash.sh dfu_runtime
while (! (dfu-util -l | grep "Found Runtime")) && [ $SECONDS -le 5 ]; do :; done