summaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
diff options
context:
space:
mode:
authorChristoph Reiter <creiter@src.gnome.org>2018-05-02 13:54:49 +0200
committerChristoph Reiter <creiter@src.gnome.org>2018-05-02 14:52:50 +0200
commit3d2ab4680dd056e0731220fa387cc79456ae01cc (patch)
treec9a0f9b9c94206f2d5e53ef1126d57a831293d3a /.gitlab-ci.yml
parent566e64a660549cd49741f244f6362af47eae3757 (diff)
downloadglib-3d2ab4680dd056e0731220fa387cc79456ae01cc.tar.gz
ci: use timeout-multiplier=2 for running the tests
It looks like the coverage generation makes the tests a bit slower and some are now hitting timeouts. Flaky tests are always more annoying than slow ones, and we don't know how much resources we get under CI, so increase the timeout. https://bugzilla.gnome.org/show_bug.cgi?id=795636
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r--.gitlab-ci.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 194a14590..6f63a7e1e 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -17,7 +17,7 @@ fedora-meson-x86_64:
- meson --prefix /usr --libdir /usr/lib64 --buildtype debug --werror -Dsystemtap=true -Ddtrace=true _build .
- cd _build
- ninja
- - meson test
+ - meson test --timeout-multiplier 2
- cd ..
- mkdir -p _coverage
- lcov --rc lcov_branch_coverage=1 --directory . --capture --no-external --output-file "_coverage/${CI_JOB_NAME}.lcov"