Skip to content

Commit

Permalink
Build and test on ubuntu-24.04-arm
Browse files Browse the repository at this point in the history
  • Loading branch information
lebr0nli committed Jan 18, 2025
1 parent c705adc commit eb18352
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 5 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,9 @@ jobs:
build:
strategy:
fail-fast: false
runs-on: ubuntu-22.04
matrix:
runner: [ubuntu-24.04, ubuntu-24.04-arm]
runs-on: ${{ matrix.runner }}
timeout-minutes: 10
steps:
- uses: actions/checkout@v4
Expand Down
9 changes: 6 additions & 3 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,11 @@ jobs:
fail-fast: false
matrix:
images: [ubuntu24.04, ubuntu22.04, ubuntu20.04, arch]

runs-on: ubuntu-24.04
runner: [ubuntu-24.04, ubuntu-24.04-arm]
exclude:
- images: arch
runner: ubuntu-24.04-arm
runs-on: ${{ matrix.runner }}
timeout-minutes: 30
steps:
- uses: actions/checkout@v4
Expand All @@ -31,4 +34,4 @@ jobs:
run: docker compose build ${{ matrix.images }}

- name: Test on ${{ matrix.images }}
run: docker compose run ${{ matrix.images }} ./tests.sh
run: docker compose run ${{ matrix.images }} ./tests.sh
1 change: 0 additions & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
services:
base: &base-spec
build: .
platform: linux/amd64
security_opt:
- seccomp:unconfined
cap_add:
Expand Down

0 comments on commit eb18352

Please sign in to comment.