-
Notifications
You must be signed in to change notification settings - Fork 3
34 lines (34 loc) · 907 Bytes
/
build.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
on:
push:
branches: [ main ]
pull_request:
branches:
- main
name: Build
jobs:
flatpak:
name: "build-extension"
runs-on: ubuntu-latest
container:
image: bilelmoussaoui/flatpak-github-actions:freedesktop-22.08
options: --privileged
strategy:
matrix:
arch: [x86_64, aarch64]
steps:
- uses: actions/checkout@v2
# Docker is required by the docker/setup-qemu-action which enables emulation
- name: Install deps
run: |
dnf -y install docker
- name: Set up QEMU
id: qemu
uses: docker/setup-qemu-action@v1
with:
platforms: arm64
- uses: bilelmoussaoui/flatpak-github-actions/flatpak-builder@v5
with:
bundle: org.freedesktop.Platform.GL.asahi.flatpak
manifest-path: org.freedesktop.Platform.GL.asahi.yml
build-bundle: false
arch: ${{ matrix.arch }}