summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristoph Reiter <reiter.christoph@gmail.com>2020-10-06 11:15:15 +0200
committerChristoph Reiter <reiter.christoph@gmail.com>2020-10-06 11:15:15 +0200
commitb991b9d31d224b50e64664845f3d57677097ca7d (patch)
tree48cc760d0003ea94cedecaa8074f4fe53d000621
parent4208cf1d5eb683c947cf1cd4e5c8830cf336a3f2 (diff)
downloadpygobject-b991b9d31d224b50e64664845f3d57677097ca7d.tar.gz
CI: test with Python 3.9
-rw-r--r--.gitlab-ci.yml7
-rw-r--r--.gitlab-ci/Dockerfile1
-rwxr-xr-x.gitlab-ci/run-docker.sh2
3 files changed, 8 insertions, 2 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 1d267ae4..44045d80 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -1,4 +1,4 @@
-image: registry.gitlab.gnome.org/gnome/pygobject/main:v14
+image: registry.gitlab.gnome.org/gnome/pygobject/main:v15
stages:
- build_and_test
@@ -80,6 +80,11 @@ python3.8:
PYENV_VERSION: "3.8.5-debug"
<<: *defaults
+python3.9:
+ variables:
+ PYENV_VERSION: "3.9.0-debug"
+ <<: *defaults
+
pypy3.6:
allow_failure: true
variables:
diff --git a/.gitlab-ci/Dockerfile b/.gitlab-ci/Dockerfile
index 5c490b60..c2f1c652 100644
--- a/.gitlab-ci/Dockerfile
+++ b/.gitlab-ci/Dockerfile
@@ -45,5 +45,6 @@ RUN pyenv install pypy3.6-7.3.1
RUN pyenv install 3.6.12
RUN pyenv install --debug 3.7.9
RUN pyenv install --debug 3.8.5
+RUN pyenv install --debug 3.9.0
ENV PATH="/usr/lib/ccache:${PATH}"
diff --git a/.gitlab-ci/run-docker.sh b/.gitlab-ci/run-docker.sh
index 9207a4a4..8b7d24df 100755
--- a/.gitlab-ci/run-docker.sh
+++ b/.gitlab-ci/run-docker.sh
@@ -2,7 +2,7 @@
set -e
-TAG="registry.gitlab.gnome.org/gnome/pygobject/main:v14"
+TAG="registry.gitlab.gnome.org/gnome/pygobject/main:v15"
sudo docker build --build-arg HOST_USER_ID="$UID" --tag "${TAG}" \
--file "Dockerfile" .