Skip to content

Commit

Permalink
all together now
Browse files Browse the repository at this point in the history
  • Loading branch information
ericwyles committed Jun 14, 2024
1 parent 92240db commit 94bf00b
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions .github/workflows/ewyles-test-qemu.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,14 @@ permissions:

jobs:
test-qemu:
# runs-on: uds-ubuntu-arm64-4-core
runs-on: uds-ubuntu-arm64-4-core
runs-on: ${{ matrix.architecture == 'arm64' && 'uds-ubuntu-arm64-4-core' || 'ubuntu-latest' }}
strategy:
matrix:
flavor: [upstream, registry1]
architecture: [amd64, arm64]
exclude:
- flavor: registry1
architecture: arm64
name: Test QEMU ${{ matrix.flavor }} ${{ matrix.architecture }}

permissions:
Expand All @@ -29,10 +35,11 @@ jobs:
ghToken: ${{ secrets.GITHUB_TOKEN }}

- name: Set up QEMU
if: ${{ runner.architecture == 'ARM64' }}
uses: docker/setup-qemu-action@v3

- name: Test Package
run: UDS_ARCHITECTURE=arm64 uds run test-package --set FLAVOR=upstream
run: UDS_ARCHITECTURE=${{ matrix.architecture }} uds run test-package --set FLAVOR=${{ matrix.flavor }}

- name: Debug Output
if: ${{ always() }}
Expand Down

0 comments on commit 94bf00b

Please sign in to comment.