Skip to content

Commit

Permalink
ci: run aarch64 builds on arm runner (#176)
Browse files Browse the repository at this point in the history
* ci: run aarch64 builds on arm runner

* chore: rename variable
  • Loading branch information
viceice authored Jan 23, 2025
1 parent 39278ed commit 4a4b57f
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,18 +43,21 @@ jobs:
build:
needs:
- lint
runs-on: ubuntu-latest
runs-on: ${{ matrix.arch.os }}
name: build (${{ matrix.arch.name }})

strategy:
fail-fast: false
matrix:
arch:
- x86_64
- aarch64
- name: x86_64
os: ubuntu-24.04
- name: aarch64
os: ubuntu-24.04-arm

env:
# DISTRO: ${{ matrix.distro }} # build target, name required by binary-builder
ARCH: ${{ matrix.arch }} # build target, name required by binary-builder
ARCH: ${{ matrix.arch.name }} # build target, name required by binary-builder

steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
Expand Down

0 comments on commit 4a4b57f

Please sign in to comment.