We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c4a0d9f commit b304826Copy full SHA for b304826
.github/workflows/main.yml
@@ -7,10 +7,18 @@ jobs:
7
strategy:
8
fail-fast: false
9
matrix:
10
- ARCH: [x86_64, i686, aarch64, armhf]
+ include:
11
+ - ARCH: x86_64
12
+ RUNS_ON: ubuntu
13
+ - ARCH: i686
14
15
+ - ARCH: aarch64
16
+ RUNS_ON: ubuntu-arm
17
+ - ARCH: armhf
18
19
20
name: AppImage ${{ matrix.ARCH }}
- runs-on: ubuntu-latest
21
+ runs-on: ${{ matrix.RUNS_ON }}
22
env:
23
ARCH: ${{ matrix.ARCH }}
24
DIST: bionic
@@ -19,9 +27,6 @@ jobs:
27
with:
28
submodules: recursive
29
- - name: Set up QEMU integration for Docker
- run: docker run --rm --privileged multiarch/qemu-user-static --reset -p yes
-
25
30
- name: Build AppImage in Docker
26
31
run: bash -ex ci/build-in-docker.sh
32
0 commit comments