From cf4789a52ed5a3aed5290fef1511a6ff36580f8a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Ekl=C3=B6f?= Date: Thu, 9 May 2019 18:57:57 +0200 Subject: [PATCH] ci: run test suite --- .gitlab-ci.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index e016f39..55d9f4c 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -21,6 +21,7 @@ debug: - cd bld/debug - meson --buildtype=debug ../.. - ninja -k0 + - meson test release: stage: build @@ -29,6 +30,7 @@ release: - cd bld/release - meson --buildtype=minsize ../../ - ninja -k0 + - meson test x11_only: stage: build @@ -37,6 +39,7 @@ x11_only: - cd bld/debug - meson --buildtype=debug -Dbackend-x11=enabled -Dbackend-wayland=disabled ../../ - ninja -k0 + - meson test wayland_only: stage: build @@ -45,6 +48,7 @@ wayland_only: - cd bld/debug - meson --buildtype=debug -Dbackend-x11=disabled -Dbackend-wayland=enabled ../../ - ninja -k0 + - meson test plugins_as_shared_modules: stage: build @@ -53,3 +57,4 @@ plugins_as_shared_modules: - cd bld/debug - meson --buildtype=debug -Dcore-plugins-as-shared-libraries=true ../../ - ninja -k0 + - meson test