We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 39278ed commit 4a4b57fCopy full SHA for 4a4b57f
.github/workflows/build.yml
@@ -43,18 +43,21 @@ jobs:
43
build:
44
needs:
45
- lint
46
- runs-on: ubuntu-latest
+ runs-on: ${{ matrix.arch.os }}
47
+ name: build (${{ matrix.arch.name }})
48
49
strategy:
50
fail-fast: false
51
matrix:
52
arch:
- - x86_64
53
- - aarch64
+ - name: x86_64
54
+ os: ubuntu-24.04
55
+ - name: aarch64
56
+ os: ubuntu-24.04-arm
57
58
env:
59
# DISTRO: ${{ matrix.distro }} # build target, name required by binary-builder
- ARCH: ${{ matrix.arch }} # build target, name required by binary-builder
60
+ ARCH: ${{ matrix.arch.name }} # build target, name required by binary-builder
61
62
steps:
63
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
0 commit comments