From 61e2db51973b2b5bef1dbd9487da9ccd734115e3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?V=C3=A9ronique=20=20LEGRAND?= <veronique.legrand@pasteur.fr> Date: Mon, 12 Apr 2021 09:38:00 +0000 Subject: [PATCH] Don't know why but, whereas I installed perl in centos7_rock, the jobs running in the centos7_rock docker image don't find perl. This is why I install it again... I need to have CI working to go on. Will investigate this problem later. --- .gitlab-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 6c1a617..b3bb6f3 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -11,7 +11,7 @@ makefile_generation_and_compilation_plus_run_nrt_tests_cluster: - export PATH=$PATH:/usr/bin - echo $PATH - ls /usr/bin - - yum update -y && yum install -y perl && /usr/bin/perl --version + - yum update -y && yum install -y perl perl-Thread-Queue.noarch && /usr/bin/perl --version - autoconf -i - ./configure - make; cd src -- GitLab