summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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}"