From ad29a88ecf83b9e3cf9e340077bb7ad06136ee92 Mon Sep 17 00:00:00 2001 From: Marek Szuba <marek.szuba@ebi.ac.uk> Date: Fri, 8 Nov 2019 16:45:59 +0000 Subject: [PATCH] .gitlab-ci.yml: switch to single-threaded Perl Devel::Cover still does not work with threads, causing weird failures (possibly segfaults) in registry.t - and IMHO we shouldn't use different threadedness for different versions of Perl we test. --- .gitlab-ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index b640232761..c2fc863731 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -41,7 +41,7 @@ before_script: test:perl5.14-sqlite: stage: test - image: perl:5.14-threaded + image: perl:5.14 variables: COVERALLS: "false" DB: "sqlite" @@ -50,7 +50,7 @@ test:perl5.14-sqlite: test:perl5.30-mysql: stage: test - image: perl:5.30-threaded + image: perl:5.30 variables: # Note: relies on the secret variable COVERALLS_REPO_TOKEN for report uploads to work COVERALLS: "true" -- GitLab