From 40c4f3c3c9e9346cf072c942470f992168c1ee8b Mon Sep 17 00:00:00 2001 From: Douglas Raillard Date: Wed, 7 Feb 2024 17:04:40 +0000 Subject: [PATCH] .gitlab-ci.yml: Install gitlab-runner --- .gitlab-ci.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index f9f70621b..f5edb3804 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -211,6 +211,11 @@ pages: - sudo apt-get -y install python3-pip python3.${PYVERSION}-full - export LISA_PYTHON=python3.${PYVERSION} + # This avoids the error: Missing gitlab-runner. Uploading artifacts is disabled. + # https://docs.gitlab.com/runner/install/linux-repository.html + - curl -L "https://packages.gitlab.com/install/repositories/runner/gitlab-runner/script.deb.sh" | sudo bash + - sudo apt-get install gitlab-runner + script: - | function lisa_python() { -- GitLab