Skip to content

Commit

Permalink
Merge pull request #56 from fyne-io/add-arm-ci
Browse files Browse the repository at this point in the history
  • Loading branch information
andydotxyz authored Jan 19, 2025
2 parents 1b8073b + 126b30b commit b5765a5
Showing 1 changed file with 12 additions and 3 deletions.
15 changes: 12 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,23 +4,32 @@ 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.sha
- 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.sha}}
# Freebsd build on arm runner do not work at this time
- {runner: ubuntu-24.04-arm,
target: {os: freebsd, arch: -amd64}}

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

steps:
- name: Setup Go environment
Expand Down

0 comments on commit b5765a5

Please sign in to comment.