summaryrefslogtreecommitdiff
path: root/.gitlab
diff options
context:
space:
mode:
authorEmmanuele Bassi <ebassi@gnome.org>2019-11-26 14:31:24 +0000
committerEmmanuele Bassi <ebassi@gmail.com>2019-11-26 14:58:34 +0000
commit337fc4539f20157f7d1e7f45faaab150555e3a4e (patch)
treea44ed7f5b20fb3e79a70c8768073279084d2848e /.gitlab
parentc97c94e7b9e0b1d16681863fd782682c1e30747c (diff)
downloadgdk-pixbuf-337fc4539f20157f7d1e7f45faaab150555e3a4e.tar.gz
ci: Add a timeout multiplier to the test suite
Some tests may take longer because of load on the CI runner. Instead of tweaking the timing of each test, let's use a timeout multiplier.
Diffstat (limited to '.gitlab')
-rwxr-xr-x.gitlab/ci/test-docker.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/.gitlab/ci/test-docker.sh b/.gitlab/ci/test-docker.sh
index d3aa9329c..be24ddc6c 100755
--- a/.gitlab/ci/test-docker.sh
+++ b/.gitlab/ci/test-docker.sh
@@ -20,7 +20,7 @@ unset CCACHE_DISABLE
cd ${builddir}
ninja || exit $?
-meson test || exit $?
+meson test -t 2 || exit $?
cd ..