-
-
Notifications
You must be signed in to change notification settings - Fork 17
74 lines (63 loc) · 1.63 KB
/
ci.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
name: CI
on:
push:
branches: [main]
pull_request:
types:
- opened
- reopened
- synchronize
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
version: [stable, unstable, development-target]
container:
image: ghcr.io/elementary/docker:${{ matrix.version }}
steps:
- uses: actions/checkout@v4
- name: Install Dependencies
run: |
apt update
apt install -y meson libedataserver1.2-dev libglib2.0-dev libgranite-7-dev libgtk-4-dev libadwaita-1-dev libswitchboard-3-dev valac
- name: Build
env:
DESTDIR: out
run: |
meson build
ninja -C build
ninja -C build install
fedora:
runs-on: ubuntu-latest
container:
image: fedora:latest
steps:
- uses: actions/checkout@v4
- name: Install Dependencies
run: |
dnf install -y git meson ninja-build vala evolution-data-server-devel glib2-devel granite-devel gtk3-devel libhandy-devel
git clone --depth 1 --branch 6.0.2 https://github.com/elementary/switchboard
dnf install -y libgee-devel
cd switchboard
meson build --prefix=/usr
ninja -C build
ninja -C build install
cd ..
rm -rf switchboard
- name: Build
env:
DESTDIR: out
run: |
meson build
ninja -C build
ninja -C build install
lint:
runs-on: ubuntu-latest
container:
image: valalang/lint
steps:
- uses: actions/checkout@v4
- name: Lint
run: io.elementary.vala-lint -d .