summaryrefslogtreecommitdiff
path: root/.gitlab-ci
diff options
context:
space:
mode:
authorChristoph Reiter <reiter.christoph@gmail.com>2018-03-01 16:07:10 +0100
committerChristoph Reiter <reiter.christoph@gmail.com>2018-03-11 13:30:17 +0100
commit9b5a99c1243c2840c133645a5e6287d4186f89b5 (patch)
tree241c0611f3dc7d43a846e110add271d9e58e59d0 /.gitlab-ci
parent7399496b808be05a419063dfc925e09e40c9c09b (diff)
downloadpygobject-9b5a99c1243c2840c133645a5e6287d4186f89b5.tar.gz
gitlab-ci: add Python 3.7.0b2 job
Diffstat (limited to '.gitlab-ci')
-rw-r--r--.gitlab-ci/Dockerfile1
-rwxr-xr-x.gitlab-ci/run-docker.sh2
2 files changed, 3 insertions, 0 deletions
diff --git a/.gitlab-ci/Dockerfile b/.gitlab-ci/Dockerfile
index e7fde966..cd486a2d 100644
--- a/.gitlab-ci/Dockerfile
+++ b/.gitlab-ci/Dockerfile
@@ -43,5 +43,6 @@ RUN pyenv install 2.7.14
RUN pyenv install 3.4.7
RUN pyenv install 3.5.5
RUN pyenv install 3.6.4
+RUN pyenv install 3.7.0b2
ENV PATH="/usr/lib/ccache:${PATH}"
diff --git a/.gitlab-ci/run-docker.sh b/.gitlab-ci/run-docker.sh
index ec171120..0b3757fc 100755
--- a/.gitlab-ci/run-docker.sh
+++ b/.gitlab-ci/run-docker.sh
@@ -1,5 +1,7 @@
#!/bin/bash
+set -e
+
TAG="lazka/pygobject:pyenv"
sudo docker build --build-arg HOST_USER_ID="$UID" --tag "${TAG}" \