ci: Add test-meson step

Apart from the autotools build system, also test the meson build system.

Signed-off-by: Jonas Ådahl <jadahl@gmail.com>
This commit is contained in:
Jonas Ådahl 2021-03-26 15:46:18 +01:00
parent 1e52414765
commit 5a2611b7ad

View file

@ -23,7 +23,18 @@ container_build:
variables:
GIT_STRATEGY: none
test:
test-meson:
stage: test
extends:
- .debian
- .fdo.distribution-image@debian
script:
- meson build
- ninja -C build
- meson test -C build
- ninja -C build install
test-autotools:
stage: test
extends:
- .debian