summaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
diff options
context:
space:
mode:
authorChristoph Reiter <reiter.christoph@gmail.com>2020-05-19 09:04:12 +0200
committerChristoph Reiter <reiter.christoph@gmail.com>2020-05-19 19:18:55 +0200
commita0b335a8b22247ef389a59d2c87d1ff09961e481 (patch)
tree2dcaf8d6f5de5f2c46a02ff82e0f936aafee26e0 /.gitlab-ci.yml
parenta943f572dd2de0ed8ca438702ad2ba8ef80d7934 (diff)
downloadgobject-introspection-a0b335a8b22247ef389a59d2c87d1ff09961e481.tar.gz
CI: add two jobs building a project using g-i with meson and autotools
This tests that after installing the g-i tools a simple project using them can be build with meson and autotools. Fixes #341
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r--.gitlab-ci.yml30
1 files changed, 29 insertions, 1 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 0cb71530..18e49f5a 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -2,12 +2,40 @@ stages:
- build
- deploy
-image: registry.gitlab.gnome.org/gnome/gobject-introspection:v6
+image: registry.gitlab.gnome.org/gnome/gobject-introspection:v7
cache:
paths:
- _ccache/
+example-meson:
+ stage: build
+ script:
+ - python3 -m pip install --user mako markdown
+ - meson --prefix /usr --libdir /usr/lib64 --buildtype debug -Ddoctool=enabled -Dgtk_doc=true -Dcairo=enabled -Dpython=python3 _build .
+ - ninja -C _build
+ - sudo ninja -C _build install
+ - g-ir-scanner --version
+ - cd examples/library
+ - meson --prefix /usr --default-library both _build
+ - ninja -C _build
+ - sudo ninja -C _build install
+ - g-ir-inspect --print-typelibs --print-shlibs GISample
+
+example-autotools:
+ stage: build
+ script:
+ - python3 -m pip install --user mako markdown
+ - meson --prefix /usr --libdir /usr/lib64 --buildtype debug -Ddoctool=enabled -Dgtk_doc=true -Dcairo=enabled -Dpython=python3 _build .
+ - ninja -C _build
+ - sudo ninja -C _build install
+ - g-ir-scanner --version
+ - cd examples/library
+ - ./autogen.sh --prefix /usr
+ - make -j
+ - sudo make install
+ - g-ir-inspect --print-typelibs --print-shlibs GISample
+
fedora-x86_64-meson:
stage: build
variables: