aboutsummaryrefslogtreecommitdiffstats
path: root/.gitlab-ci.yml
diff options
context:
space:
mode:
authorGravatar Johannes Christ <[email protected]>2018-11-06 19:30:04 +0100
committerGravatar Johannes Christ <[email protected]>2018-11-06 19:30:04 +0100
commit42080913d69154e04153d4caec623d2b19a8f150 (patch)
tree444d24d158ac0888154971401497d7e8bd6e47ea /.gitlab-ci.yml
parentInstall `postgresql-dev` for `psycopg2`. (diff)
Install `gcc` for `psycopg2`.
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r--.gitlab-ci.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index a7621236..26f8c0d5 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -57,7 +57,7 @@ test-3.7-alpine:
<<: *test-template
image: python:3.7-alpine
before_script:
- - apk add --no-cache-dir postgresql-dev
+ - apk add --no-cache-dir gcc postgresql-dev
- python -m pip install -e .[test]
- python manage.py migrate
script:
@@ -72,7 +72,7 @@ test-3.6-alpine:
<<: *test-template
image: python:3.6-alpine
before_script:
- - apk add --no-cache-dir postgresql-dev
+ - apk add --no-cache-dir gcc postgresql-dev
- python -m pip install -e .[test]
- python manage.py migrate