From 7bc1aeef8e56f4e230f335e05b5f87367469e805 Mon Sep 17 00:00:00 2001 From: Christoph Reiter Date: Thu, 28 Mar 2019 19:54:13 +0100 Subject: [PATCH] CI: run the tests with meson Not all are ported I think, but this is a start. --- .gitlab-ci/test-docker-meson.sh | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/.gitlab-ci/test-docker-meson.sh b/.gitlab-ci/test-docker-meson.sh index c3cbdf56a1..ab1f8cd50d 100755 --- a/.gitlab-ci/test-docker-meson.sh +++ b/.gitlab-ci/test-docker-meson.sh @@ -10,4 +10,11 @@ export PATH="${HOME}/.local/bin:${PATH}" python3 -m pip install --user meson==0.49.2 meson _build -ninja -C _build +cd _build +ninja + +xvfb-run -a -s "-screen 0 1024x768x24" \ + meson test \ + --timeout-multiplier 4 \ + --print-errorlogs \ + --suite=gtk+-3.0 \