-
-
Notifications
You must be signed in to change notification settings - Fork 27
35 lines (31 loc) · 744 Bytes
/
main.yaml
File metadata and controls
35 lines (31 loc) · 744 Bytes
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
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@v6
- name: Install Dependencies
run: |
apt update
apt install -y meson libaccountsservice-dev dbus libpolkit-gobject-1-dev python3 libglib2.0-bin
- name: Build
env:
DESTDIR: ${{ env.PWD }}/build/out
run: |
meson build
ninja -C build
ninja -C build install