summaryrefslogtreecommitdiff
path: root/.gitlab-ci
diff options
context:
space:
mode:
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 5a4e0e72..9a950083 100644
--- a/.gitlab-ci/Dockerfile
+++ b/.gitlab-ci/Dockerfile
@@ -41,10 +41,10 @@ ENV PYTHON_CONFIGURE_OPTS="--enable-shared"
RUN curl -L https://raw.githubusercontent.com/pyenv/pyenv-installer/master/bin/pyenv-installer | bash
-RUN pyenv install pypy3.7-7.3.5
-RUN pyenv install --debug 3.7.11
-RUN pyenv install --debug 3.8.12
-RUN pyenv install --debug 3.9.7
-RUN pyenv install --debug 3.10.0rc2
+RUN pyenv install pypy3.8-7.3.8
+RUN pyenv install --debug 3.7.13
+RUN pyenv install --debug 3.8.13
+RUN pyenv install --debug 3.9.12
+RUN pyenv install --debug 3.10.4
ENV PATH="/usr/lib/ccache:${PATH}"
diff --git a/.gitlab-ci/run-docker.sh b/.gitlab-ci/run-docker.sh
index e6aaaa0b..5ad020e9 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:v17"
+TAG="registry.gitlab.gnome.org/gnome/pygobject/main:v18"
sudo docker build --build-arg HOST_USER_ID="$UID" --tag "${TAG}" \
--file "Dockerfile" .
-sudo docker run -e PYENV_VERSION='3.8.12-debug' --rm --security-opt label=disable \
+sudo docker run -e PYENV_VERSION='3.8.13-debug' --rm --security-opt label=disable \
--volume "$(pwd)/..:/home/user/app" --workdir "/home/user/app" \
--tty --interactive "${TAG}" bash