From 50e95ad3f2867885d4546a611701d9b494678707 Mon Sep 17 00:00:00 2001 From: Emmy D'Anello Date: Sat, 13 Jan 2024 17:31:31 +0100 Subject: [PATCH] Install Git in Gitlab CI Signed-off-by: Emmy D'Anello --- .gitlab-ci.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 3a91d34..5ab4e13 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -7,6 +7,7 @@ py311: image: python:3.11-alpine before_script: - apk add --no-cache libmagic + - apk add --no-cache git # Useful for django-haystack, remove when the newer versions are in PyPI - pip install tox --no-cache-dir script: tox -e py311 @@ -15,6 +16,7 @@ py312: image: python:3.12-alpine before_script: - apk add --no-cache libmagic + - apk add --no-cache git # Useful for django-haystack, remove when the newer versions are in PyPI - pip install tox --no-cache-dir script: tox -e py312