summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorhathach <[email protected]>2023-12-12 11:59:37 +0700
committerhathach <[email protected]>2023-12-12 11:59:37 +0700
commitb5448a7987cc321607f0641ba3922c5b322e3bb4 (patch)
tree4a3a3f45f4a829d2927bc2e36c77d1ef71eb0cef /.github
parent24c5e6ab451a002d2e9a86a39acc11476250d1a5 (diff)
add feather nrf52840 express to hil pool
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/cmake_arm.yml16
1 files changed, 13 insertions, 3 deletions
diff --git a/.github/workflows/cmake_arm.yml b/.github/workflows/cmake_arm.yml
index 535244c47..0df51a3ca 100644
--- a/.github/workflows/cmake_arm.yml
+++ b/.github/workflows/cmake_arm.yml
@@ -86,14 +86,23 @@ jobs:
# for rp2040, there is no harm if defined for other families
PICO_SDK_PATH: ${{ github.workspace }}/pico-sdk
- - name: Upload Artifacts for Hardware Testing
- if: contains(matrix.family,'rp2040') && github.repository_owner == 'hathach'
+ - name: Upload Artifacts for Hardware Testing (rp2040)
+ if: matrix.family == 'rp2040' && github.repository_owner == 'hathach'
uses: actions/upload-artifact@v3
with:
name: raspberry_pi_pico
path: |
cmake-build/cmake-build-raspberry_pi_pico/*/*/*.elf
+ - name: Upload Artifacts for Hardware Testing (nRF)
+ if: matrix.family == 'nrf' && github.repository_owner == 'hathach'
+ uses: actions/upload-artifact@v3
+ with:
+ name: feather_nrf52840_express
+ path: |
+ cmake-build/cmake-build-feather_nrf52840_express/*/*/*.elf
+
+
# ---------------------------------------
# Hardware in the loop (HIL)
# Current self-hosted instance is running on an RPI4. For attached hardware checkout hil_pi4.json
@@ -102,12 +111,13 @@ jobs:
# run only with hathach's commit due to limited resource on RPI4
if: github.repository_owner == 'hathach'
needs: build-arm
- runs-on: [self-hosted, rp2040, hardware-in-the-loop]
+ runs-on: [self-hosted, rp2040, nrf52840, hardware-in-the-loop]
strategy:
fail-fast: false
matrix:
board:
- 'raspberry_pi_pico'
+ - 'feather_nrf52840_express'
steps:
- name: Clean workspace
run: |