summaryrefslogtreecommitdiff
path: root/.gitlab-ci
diff options
context:
space:
mode:
authorChristoph Reiter <reiter.christoph@gmail.com>2019-10-18 21:06:33 +0200
committerChristoph Reiter <reiter.christoph@gmail.com>2019-10-18 21:12:15 +0200
commite29b06546454a43ff4d138ce08618fa8664643fe (patch)
tree3000f2d75a8ae5648056f62dcd69465a8a0d9236 /.gitlab-ci
parentea76a3728bd50b2caa6a8134d32c38b13530d60f (diff)
downloadpygobject-e29b06546454a43ff4d138ce08618fa8664643fe.tar.gz
CI: update interpreters
Diffstat (limited to '.gitlab-ci')
-rw-r--r--.gitlab-ci/Dockerfile10
-rwxr-xr-x.gitlab-ci/run-docker.sh4
2 files changed, 7 insertions, 7 deletions
diff --git a/.gitlab-ci/Dockerfile b/.gitlab-ci/Dockerfile
index eaaa484a..fdcb0379 100644
--- a/.gitlab-ci/Dockerfile
+++ b/.gitlab-ci/Dockerfile
@@ -39,12 +39,12 @@ ENV PYTHON_CONFIGURE_OPTS="--enable-shared"
RUN curl -L https://raw.githubusercontent.com/pyenv/pyenv-installer/master/bin/pyenv-installer | bash
-RUN pyenv install pypy2.7-7.1.0
-RUN pyenv install pypy3.6-7.1.0
+RUN pyenv install pypy2.7-7.2.0
+RUN pyenv install pypy3.6-7.2.0
RUN pyenv install --debug 2.7.16
RUN pyenv install 3.5.7
-RUN pyenv install 3.6.8
-RUN pyenv install --debug 3.7.3
-RUN pyenv install --debug 3.8-dev
+RUN pyenv install 3.6.9
+RUN pyenv install --debug 3.7.4
+RUN pyenv install --debug 3.8.0
ENV PATH="/usr/lib/ccache:${PATH}"
diff --git a/.gitlab-ci/run-docker.sh b/.gitlab-ci/run-docker.sh
index c1d362b7..cfcaab30 100755
--- a/.gitlab-ci/run-docker.sh
+++ b/.gitlab-ci/run-docker.sh
@@ -2,10 +2,10 @@
set -e
-TAG="registry.gitlab.gnome.org/gnome/pygobject/main:v11"
+TAG="registry.gitlab.gnome.org/gnome/pygobject/main:v12"
sudo docker build --build-arg HOST_USER_ID="$UID" --tag "${TAG}" \
--file "Dockerfile" .
-sudo docker run -e PYENV_VERSION='3.7.3-debug' --rm --security-opt label=disable \
+sudo docker run -e PYENV_VERSION='3.7.4-debug' --rm --security-opt label=disable \
--volume "$(pwd)/..:/home/user/app" --workdir "/home/user/app" \
--tty --interactive "${TAG}" bash