-
Notifications
You must be signed in to change notification settings - Fork 86
37 lines (35 loc) · 1.04 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
name: Test
on:
- push
- pull_request
jobs:
linux:
name: Linux
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