forked from flathub/flathub
-
Notifications
You must be signed in to change notification settings - Fork 0
39 lines (36 loc) · 1.06 KB
/
ci.yaml
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
35
36
37
38
39
name: CI
on:
push:
branches: [meshtasticd]
pull_request:
jobs:
flatpak-amd64:
runs-on: ubuntu-24.04
container:
image: ghcr.io/flathub-infra/flatpak-github-actions:freedesktop-24.08
options: --privileged
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
- uses: flathub-infra/flatpak-github-actions/flatpak-builder@master
with:
bundle: meshtasticd.flatpak
manifest-path: org.meshtastic.meshtasticd.yaml
arch: x86_64
cache-key: flatpak-builder-${{ github.sha }}-amd64
flatpak-arm64:
runs-on: ubuntu-24.04-arm
container:
image: ghcr.io/flathub-infra/flatpak-github-actions:freedesktop-24.08
options: --privileged
steps:
- uses: actions/checkout@v4
with:
submodules: recursive
- uses: flathub-infra/flatpak-github-actions/flatpak-builder@master
with:
bundle: meshtasticd.flatpak
manifest-path: org.meshtastic.meshtasticd.yaml
arch: aarch64
cache-key: flatpak-builder-${{ github.sha }}-arm64