Skip to content

Commit 9a2138a

Browse files
committed
Build on native ARM runners
1 parent a0b2398 commit 9a2138a

File tree

1 file changed

+10
-2
lines changed

1 file changed

+10
-2
lines changed

.github/workflows/main.yml

+10-2
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,18 @@ jobs:
1313
strategy:
1414
fail-fast: false
1515
matrix:
16-
ARCH: [x86_64, i386, aarch64, armhf]
16+
include:
17+
- ARCH: x86_64
18+
RUNS_ON: ubuntu-latest
19+
- ARCH: i386
20+
RUNS_ON: ubuntu-latest
21+
- ARCH: aarch64
22+
RUNS_ON: ubuntu-latest-arm
23+
- ARCH: armhf
24+
RUNS_ON: ubuntu-latest-arm
1725

1826
name: AppImage ${{ matrix.ARCH }}
19-
runs-on: ubuntu-20.04
27+
runs-on: ${{ matrix.RUNS_ON }}
2028
env:
2129
ARCH: ${{ matrix.ARCH }}
2230
APPIMAGE_EXTRACT_AND_RUN: 1

0 commit comments

Comments
 (0)