Skip to content

Commit

Permalink
gitlab-ci: Add meson build to pipeline test
Browse files Browse the repository at this point in the history
  • Loading branch information
dcbaker authored and nwnk committed Nov 29, 2018
1 parent 199a3bd commit eb0dfaa
Showing 1 changed file with 12 additions and 2 deletions.
14 changes: 12 additions & 2 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,19 @@
image: fedora:28

job:
autotools-build:
script:
- dnf -y install dnf-plugins-core
- dnf -y groupinstall buildsys-build
- dnf -y builddep pixman
- ./autogen.sh
- make -sj4 check
- 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

0 comments on commit eb0dfaa

Please sign in to comment.