Skip to content

Commit 4121a90

Browse files
bastimeyerTheAssassin
authored andcommitted
Build aarch64 with docker on ubuntu-24.04-arm
1 parent 94bfa3c commit 4121a90

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

.github/workflows/build.yaml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -22,16 +22,20 @@ defaults:
2222

2323
jobs:
2424
build:
25-
runs-on: ubuntu-latest
26-
2725
strategy:
2826
fail-fast: false
2927
matrix:
3028
include:
3129
- appimage_arch: i686
30+
runner: ubuntu-24.04
3231
- appimage_arch: x86_64
32+
runner: ubuntu-24.04
3333
- appimage_arch: armhf
34+
runner: ubuntu-24.04-arm
3435
- appimage_arch: aarch64
36+
runner: ubuntu-24.04-arm
37+
38+
runs-on: ${{ matrix.runner }}
3539

3640
steps:
3741
- name: Checkout
@@ -42,9 +46,6 @@ jobs:
4246
echo -n "https://github.com/${GITHUB_REPOSITORY}/commit/" > src/runtime/version
4347
git rev-parse --short HEAD | xargs >> src/runtime/version
4448
45-
- name: Set up QEMU integration for Docker
46-
run: docker run --rm --privileged multiarch/qemu-user-static --reset -p yes
47-
4849
- name: Build
4950
env:
5051
ARCH: ${{ matrix.appimage_arch }}

0 commit comments

Comments
 (0)