-
Notifications
You must be signed in to change notification settings - Fork 86
69 lines (66 loc) · 2.18 KB
/
test.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
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
name: Test
on:
- push
- pull_request
jobs:
linux-autotools:
name: Linux Autotools
runs-on: ubuntu-22.04
strategy:
matrix:
configureFlags:
- ""
- "--with-introspection"
- "--with-gegl"
include:
- configureFlags: "--with-introspection"
extraDeps: "libgirepository1.0-dev"
- configureFlags: "--with-gegl"
extraDeps: "libgegl-dev"
steps:
- uses: actions/checkout@v4
- name: "Install dependencies"
run: |
sudo apt-get update
sudo apt-get install -y \
libjson-c-dev \
intltool \
${{ matrix.extraDeps }}
- name: "Build"
run: |
./autogen.sh
./configure ${{ matrix.configureFlags }}
make
- name: "Run tests"
run: make distcheck
linux-meson:
name: Linux Meson
runs-on: ubuntu-22.04
strategy:
matrix:
configureFlags:
- ""
- "-Dglib=enabled -Dintrospection=enabled"
- "-Dgegl=enabled"
include:
- configureFlags: "-Dglib=enabled -Dintrospection=enabled"
extraDeps: "libgirepository1.0-dev"
- configureFlags: "-Dgegl=enabled"
extraDeps: "libgegl-dev"
steps:
- uses: actions/checkout@v4
- name: "Install dependencies"
run: |
sudo apt-get update
sudo apt-get install -y \
libjson-c-dev \
meson \
ninja-build \
gettext \
${{ matrix.extraDeps }}
- name: "Build"
run: |
meson setup _build --buildtype=release -Dauto_features=disabled
meson compile -C _build
- name: "Run tests"
run: meson dist -C _build