summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristoph Reiter <reiter.christoph@gmail.com>2019-06-07 16:28:30 +0200
committerChristoph Reiter <reiter.christoph@gmail.com>2019-06-07 16:57:47 +0200
commitaad0151175f4680ab9623d9bad6a29cfa653a4d6 (patch)
tree948b5202795a01d8816f364e2f0ddd15b78e5547
parent7327748c36214b5c5401e5170445da9ef0a66b30 (diff)
downloadpygobject-aad0151175f4680ab9623d9bad6a29cfa653a4d6.tar.gz
CI: Add a python 3.8-dev job
-rw-r--r--.gitlab-ci.yml5
-rw-r--r--.gitlab-ci/Dockerfile1
2 files changed, 6 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index d8c51d34..be27ed22 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -99,6 +99,11 @@ python3.7:
PYENV_VERSION: "3.7.3-debug"
<<: *defaults
+python3.8:
+ variables:
+ PYENV_VERSION: "3.8-dev-debug"
+ <<: *defaults
+
pypy2.7:
allow_failure: true
variables:
diff --git a/.gitlab-ci/Dockerfile b/.gitlab-ci/Dockerfile
index 8606ae13..eaaa484a 100644
--- a/.gitlab-ci/Dockerfile
+++ b/.gitlab-ci/Dockerfile
@@ -45,5 +45,6 @@ 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
ENV PATH="/usr/lib/ccache:${PATH}"