From 88d30cdd0f0e76c94852c37861237e453d9e2933 Mon Sep 17 00:00:00 2001 From: Andreas Romeyke <andreas.romeyke@slub-dresden.de> Date: Fri, 30 Aug 2024 13:26:49 +0200 Subject: [PATCH] - fixed dependency --- .gitlab-ci.yml | 4 ++++ gitlab-ci/Dockerfile | 1 + 2 files changed, 5 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index d9b9980..42865b3 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -72,6 +72,8 @@ perl-unit-test-job: # This job runs in the test stage. - "docker" script: - prove -l t/ + depends: + build-env-job perl-quality-test-job: # This job runs in the test stage. stage: pretest # It only starts when the job in the build stage completes successfully. @@ -80,3 +82,5 @@ perl-quality-test-job: # This job runs in the test stage. - "docker" script: - prove -l xt/ + depends: + build-env-job diff --git a/gitlab-ci/Dockerfile b/gitlab-ci/Dockerfile index 3af7002..8c51e3f 100644 --- a/gitlab-ci/Dockerfile +++ b/gitlab-ci/Dockerfile @@ -45,6 +45,7 @@ RUN apt-get update; \ libregexp-optimizer-perl \ libsoap-lite-perl \ libsys-cpu-perl \ + libtext-csv-perl \ libtext-csv-xs-perl \ && rm -rf /var/lib/apt/lists/* \ ; -- GitLab