Skip to content

Commit

Permalink
Enable CI on arm host.
Browse files Browse the repository at this point in the history
  • Loading branch information
Bluebugs committed Jan 18, 2025
1 parent 1b8073b commit 478f59b
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,23 +4,29 @@ on: [push,pull_request]
jobs:
test:
name: "Test images"
runs-on: "ubuntu-latest"
strategy:
fail-fast: false
matrix:
go-version: ["1.19.x"]
runner: [ubuntu-latest, ubuntu-24.04-arm]
go-version: ["1.19.x", "1.23.x"]
target:
- os: linux
- os: windows
ext: .exe
- os: android
args: -app-id calc.sha${{ github.sha }}
args: -app-id calc
- os: web
- os: freebsd
arch: -amd64
# Calculator build is failing on CI
# - os: freebsd
# arch: -arm64
exclude:
# See https://github.com/actions/runner/issues/1512 for this weird syntax
- {runner: ubuntu-24.04-arm,
target: {os: android, args: -app-id calc}}

runs-on: ${{ matrix.runner }}

steps:
- name: Setup Go environment
Expand Down

0 comments on commit 478f59b

Please sign in to comment.