Skip to content

Commit 458c8bf

Browse files
authored
tests_hw: GHA introduce Raspberry PI runner (#202)
* tests_hw: GHA introduce Raspberry PI runner Adds additional tests utilizing the Raspberry PI 5 runner. Currently tests run are mostly a copy of current Linux and native_sim tests but these will be expanded upon in future commits. --------- Signed-off-by: Matthew Gee <mgee@iol.unh.edu>
1 parent 0336c83 commit 458c8bf

1 file changed

Lines changed: 5 additions & 2 deletions

File tree

.github/workflows/linux.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,16 @@ on:
1313
default: latest
1414
required: false
1515
type: string
16-
1716
jobs:
1817
build-and-run-linux:
18+
strategy:
19+
matrix:
20+
runner: [ubuntu-24.04, raspberrypi-runner]
1921
name: Build and Run
20-
runs-on: ubuntu-24.04
22+
runs-on: ${{matrix.runner}}
2123
container:
2224
image: ghcr.io/${{ github.repository }}/devcontainer-linux:${{ inputs.devcontainer-tag }}
25+
options: ${{matrix.options}}
2326
steps:
2427
- name: Clean other workspace
2528
run: rm -rf ../.west

0 commit comments

Comments
 (0)