Install gcc in Gitlab CI (need to investigate)

This commit is contained in:
Yohann D'ANELLO 2020-10-30 20:01:16 +01:00
parent fac239111a
commit aa617a4bb6
1 changed files with 2 additions and 2 deletions

View File

@ -6,7 +6,7 @@ py38:
stage: test
image: python:3.8-alpine
before_script:
- apk add --no-cache libmagic libxml2-dev libxslt-dev
- apk add --no-cache gcc libmagic libxml2-dev libxslt-dev
- pip install tox --no-cache-dir
script: tox -e py38
@ -14,7 +14,7 @@ py39:
stage: test
image: python:3.9-alpine
before_script:
- apk add --no-cache libmagic libxml2-dev libxslt-dev
- apk add --no-cache gcc libmagic libxml2-dev libxslt-dev
- pip install tox --no-cache-dir
script: tox -e py39