Skip to content

Commit

Permalink
feat: Run tests on arm runners for Noble and Jammy
Browse files Browse the repository at this point in the history
Signed-off-by: Lincoln Wallace <[email protected]>
  • Loading branch information
locnnil committed Jan 19, 2025
1 parent 7d5e826 commit 8d36fc5
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions .github/workflows/smoke-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,11 @@ defaults:
jobs:

build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, ubuntu-24.04-arm]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout code
uses: actions/checkout@v4
Expand All @@ -23,7 +27,7 @@ jobs:
uses: snapcore/action-build@v1
id: snapcraft
with:
snapcraft-args: snap --output docker_${{ github.run_id}}.snap
snapcraft-args: snap --output docker_${{ github.run_id}}_${{ env.runner_arch }}.snap

- name: Upload
uses: actions/upload-artifact@v4
Expand All @@ -36,7 +40,7 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [ubuntu-24.04, ubuntu-22.04, ubuntu-20.04]
os: [ubuntu-24.04, ubuntu-22.04, ubuntu-20.04, ubuntu-24.04-arm, ubuntu-22.04-arm]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout code
Expand All @@ -45,7 +49,7 @@ jobs:
- name: Download artifact
uses: actions/download-artifact@v4
with:
name: docker_${{ github.run_id }}.snap
name: docker_${{ github.run_id}}_${{ env.runner_arch }}.snap

- name: Prep
run: |
Expand Down

0 comments on commit 8d36fc5

Please sign in to comment.