-
Notifications
You must be signed in to change notification settings - Fork 39
80 lines (70 loc) · 2.15 KB
/
flatpak.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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
---
name: Flatpak Portal Test App
on:
push:
paths-ignore: ['**.md']
branches: [main]
pull_request:
paths-ignore: ['**.md']
branches: [main]
jobs:
build-flatpak-gtk3:
name: GTK3
runs-on: ubuntu-latest
container:
image: bilelmoussaoui/flatpak-github-actions:gnome-44
options: --privileged
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Build GTK3 portal test
uses: bilelmoussaoui/flatpak-github-actions/flatpak-builder@v6
with:
bundle: portal-test-gtk3.flatpak
manifest-path: build-aux/org.gnome.PortalTest.Gtk3.json
cache-key: gtk3-${{ github.sha }}
build-flatpak-gtk4:
name: GTK4
runs-on: ubuntu-latest
container:
image: bilelmoussaoui/flatpak-github-actions:gnome-44
options: --privileged
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Build GTK4 portal test
uses: bilelmoussaoui/flatpak-github-actions/flatpak-builder@v6
with:
bundle: portal-test-gtk4.flatpak
manifest-path: build-aux/org.gnome.PortalTest.Gtk4.json
cache-key: gtk4-${{ github.sha }}
build-flatpak-qt5:
name: Qt5
runs-on: ubuntu-latest
container:
image: bilelmoussaoui/flatpak-github-actions:kde-5.15
options: --privileged
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Build Qt5 portal test
uses: bilelmoussaoui/flatpak-github-actions/flatpak-builder@v6
with:
bundle: portal-test-qt5.flatpak
manifest-path: build-aux/org.gnome.PortalTest.Qt5.json
cache-key: qt5-${{ github.sha }}
build-flatpak-qt6:
name: Qt6
runs-on: ubuntu-latest
container:
image: bilelmoussaoui/flatpak-github-actions:kde-6.5
options: --privileged
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Build Qt6 portal test
uses: bilelmoussaoui/flatpak-github-actions/flatpak-builder@v6
with:
bundle: portal-test-qt6.flatpak
manifest-path: build-aux/org.gnome.PortalTest.Qt6.json
cache-key: qt6-${{ github.sha }}