Skip to content

Commit 1323b99

Browse files
committed
Build Flatpak for aarch64 architecture
1 parent 5c7eb43 commit 1323b99

File tree

1 file changed

+13
-3
lines changed

1 file changed

+13
-3
lines changed

.github/workflows/ci.yaml

+13-3
Original file line numberDiff line numberDiff line change
@@ -11,15 +11,25 @@ on:
1111
jobs:
1212
flatpak:
1313
name: "Flatpak"
14-
runs-on: ubuntu-latest
1514
container:
16-
image: bilelmoussaoui/flatpak-github-actions:gnome-47
15+
image: ghcr.io/flathub-infra/flatpak-github-actions:gnome-47
1716
options: --privileged
17+
strategy:
18+
matrix:
19+
variant:
20+
- arch: x86_64
21+
runner: ubuntu-24.04
22+
- arch: aarch64
23+
runner: ubuntu-24.04-arm
24+
fail-fast: false
25+
runs-on: ${{ matrix.variant.runner }}
1826
steps:
1927
- uses: actions/checkout@v4
20-
- uses: flatpak/flatpak-github-actions/flatpak-builder@v6
28+
- uses: flathub-infra/flatpak-github-actions/flatpak-builder@master
2129
with:
2230
bundle: televido.flatpak
2331
manifest-path: build-aux/de.k_bo.Televido.Devel.json
2432
cache-key: flatpak-builder-${{ github.sha }}
2533
run-tests: true
34+
arch: ${{ matrix.variant.arch }}
35+
verbose: true

0 commit comments

Comments
 (0)