From 67591fcf00f938d3551c310729298bffcd01f969 Mon Sep 17 00:00:00 2001 From: Peter Hutterer Date: Wed, 3 Jun 2020 21:22:21 +1000 Subject: [PATCH] gitlab CI: alpine needs pip explicitly installed now Signed-off-by: Peter Hutterer (cherry picked from commit 75ca6dcfa3bd35219d75922dbf03945d31fcdb86) --- .gitlab-ci.yml | 4 ++-- .gitlab-ci/gitlab-ci.tmpl | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 39c7c0d1..11d606a4 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -137,7 +137,7 @@ check-ci-script: image: golang:alpine stage: prep before_script: - - apk add python3 git + - apk add python3 py-pip git - pip3 install --user jinja2 script: - python3 ./.gitlab-ci/generate-gitlab-ci.py @@ -153,7 +153,7 @@ check-commit: image: golang:alpine stage: prep before_script: - - apk add python3 git + - apk add python3 py-pip git script: - pip3 install GitPython - pip3 install pytest diff --git a/.gitlab-ci/gitlab-ci.tmpl b/.gitlab-ci/gitlab-ci.tmpl index 4d814301..868598ad 100644 --- a/.gitlab-ci/gitlab-ci.tmpl +++ b/.gitlab-ci/gitlab-ci.tmpl @@ -127,7 +127,7 @@ check-ci-script: image: golang:alpine stage: prep before_script: - - apk add python3 git + - apk add python3 py-pip git - pip3 install --user jinja2 script: - python3 ./.gitlab-ci/generate-gitlab-ci.py @@ -143,7 +143,7 @@ check-commit: image: golang:alpine stage: prep before_script: - - apk add python3 git + - apk add python3 py-pip git script: - pip3 install GitPython - pip3 install pytest