summaryrefslogtreecommitdiff
path: root/.gitlab-ci
diff options
context:
space:
mode:
authorChristoph Reiter <reiter.christoph@gmail.com>2019-12-30 10:51:59 +0100
committerChristoph Reiter <reiter.christoph@gmail.com>2019-12-30 10:53:11 +0100
commitd8c63d54a7496d8e25d5b0095e0095f8a8c5b802 (patch)
tree75d6304356f5c953020dd6ba9b85624dbe31d3da /.gitlab-ci
parent7de9b68719e7c846fee576138cf1f352b8d14efe (diff)
downloadpygobject-d8c63d54a7496d8e25d5b0095e0095f8a8c5b802.tar.gz
CI: Update interpreters
Diffstat (limited to '.gitlab-ci')
-rw-r--r--.gitlab-ci/Dockerfile14
-rwxr-xr-x.gitlab-ci/run-docker.sh4
2 files changed, 9 insertions, 9 deletions
diff --git a/.gitlab-ci/Dockerfile b/.gitlab-ci/Dockerfile
index fdcb0379..75d66d87 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.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.9
-RUN pyenv install --debug 3.7.4
-RUN pyenv install --debug 3.8.0
+RUN pyenv install pypy2.7-7.3.0
+RUN pyenv install pypy3.6-7.3.0
+RUN pyenv install --debug 2.7.17
+RUN pyenv install 3.5.9
+RUN pyenv install 3.6.10
+RUN pyenv install --debug 3.7.6
+RUN pyenv install --debug 3.8.1
ENV PATH="/usr/lib/ccache:${PATH}"
diff --git a/.gitlab-ci/run-docker.sh b/.gitlab-ci/run-docker.sh
index cfcaab30..148e5f40 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:v12"
+TAG="registry.gitlab.gnome.org/gnome/pygobject/main:v13"
sudo docker build --build-arg HOST_USER_ID="$UID" --tag "${TAG}" \
--file "Dockerfile" .
-sudo docker run -e PYENV_VERSION='3.7.4-debug' --rm --security-opt label=disable \
+sudo docker run -e PYENV_VERSION='3.8.1-debug' --rm --security-opt label=disable \
--volume "$(pwd)/..:/home/user/app" --workdir "/home/user/app" \
--tty --interactive "${TAG}" bash