Skip to content

Commit b304826

Browse files
committed
Use native ARM runners
1 parent c4a0d9f commit b304826

File tree

1 file changed

+10
-5
lines changed

1 file changed

+10
-5
lines changed

.github/workflows/main.yml

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,18 @@ jobs:
77
strategy:
88
fail-fast: false
99
matrix:
10-
ARCH: [x86_64, i686, aarch64, armhf]
10+
include:
11+
- ARCH: x86_64
12+
RUNS_ON: ubuntu
13+
- ARCH: i686
14+
RUNS_ON: ubuntu
15+
- ARCH: aarch64
16+
RUNS_ON: ubuntu-arm
17+
- ARCH: armhf
18+
RUNS_ON: ubuntu-arm
1119

1220
name: AppImage ${{ matrix.ARCH }}
13-
runs-on: ubuntu-latest
21+
runs-on: ${{ matrix.RUNS_ON }}
1422
env:
1523
ARCH: ${{ matrix.ARCH }}
1624
DIST: bionic
@@ -19,9 +27,6 @@ jobs:
1927
with:
2028
submodules: recursive
2129

22-
- name: Set up QEMU integration for Docker
23-
run: docker run --rm --privileged multiarch/qemu-user-static --reset -p yes
24-
2530
- name: Build AppImage in Docker
2631
run: bash -ex ci/build-in-docker.sh
2732

0 commit comments

Comments
 (0)