Skip to content

Commit

Permalink
Add matrix for request ci
Browse files Browse the repository at this point in the history
  • Loading branch information
seanavery committed Nov 13, 2023
1 parent 5b854b4 commit 051a9ee
Showing 1 changed file with 11 additions and 9 deletions.
20 changes: 11 additions & 9 deletions .github/workflows/request.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,15 @@ on:
jobs:
test-package:
runs-on: [buildjet-2vcpu-ubuntu-2204-arm]
strategy:
matrix:
include:
- container: ghcr.io/seanavery/viam-cpp-base:0.0.2
TARGET: jetson
- container: ghcr.io/seanavery/viam-cpp-base-pi:0.0.2
TARGET: pi
container:
image: ghcr.io/seanavery/viam-cpp-base:0.0.2
image: ${{ matrix.container }}
options: --platform linux/arm64
steps:
- name: Check out code
Expand All @@ -30,12 +37,7 @@ jobs:
- name: Copy binary and appimage to bin folder
run: make bin

- name: Run appimage in fresh L4T instance
- name: Run appimage in freshinstance
run: |
make image-test TARGET=jetson
make test-package TARGET=jetson
- name: Run appimage in fresh debian instance
run: |
make image-test TARGET=pi
make test-package TARGET=pi
make image-test
make test-package

0 comments on commit 051a9ee

Please sign in to comment.