summaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
blob: e850b76ab0faf0aa95f4ebc03acb24ef99fd1c2d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
image: fedora:28

autotools-build:
    script:
    - dnf -y install dnf-plugins-core
    - dnf -y groupinstall buildsys-build
    - dnf -y builddep pixman
    - ./autogen.sh
    - make -sj4 check

meson-build:
    script:
    - dnf -y install dnf-plugins-core
    - dnf -y groupinstall buildsys-build
    - dnf -y builddep pixman
    - dnf -y install ninja-build
    - python3 -m pip install meson>=0.47.2
    - meson build
    - ninja -C build test