From b7bc0fe4994c31cbf555aa74a92a78fcfb86344f Mon Sep 17 00:00:00 2001 From: Yohann D'ANELLO Date: Thu, 24 Sep 2020 11:50:56 +0200 Subject: [PATCH] Install gcc in CI --- .gitlab-ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index ee1ddbc..8b57b5f 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -6,7 +6,7 @@ py38-django31: stage: test image: python:3-alpine before_script: - - apk add postgresql-dev # Add texlive + - apk add gcc postgresql-dev # Add texlive - pip install tox --no-cache-dir script: tox -e py38-django31 @@ -14,7 +14,7 @@ linters: stage: quality-assurance image: python:3-alpine before_script: - - apk add postgresql-dev # Add texlive + - apk add gcc postgresql-dev # Add texlive - pip install tox --no-cache-dir script: tox -e linters