summaryrefslogtreecommitdiff
path: root/.gitlab-ci
diff options
context:
space:
mode:
authorChristoph Reiter <reiter.christoph@gmail.com>2021-09-19 15:00:02 +0200
committerChristoph Reiter <reiter.christoph@gmail.com>2021-09-19 15:20:30 +0200
commitf9425cfc040f720acd2c78b200d2b7c868f44d4e (patch)
treea0d779976d428e236b7a1cf109bd8a6a2804e78b /.gitlab-ci
parenta0347d8446eb937a36d02d7c905f0d56dce8ff8f (diff)
downloadpygobject-f9425cfc040f720acd2c78b200d2b7c868f44d4e.tar.gz
Drop support for Python 3.6
It will be EOL before the next release. This means Ubuntu 18.04 (without backports) is no longer supported, we will move to Debian Buster as the new oldest tested target.
Diffstat (limited to '.gitlab-ci')
-rw-r--r--.gitlab-ci/Dockerfile1
-rw-r--r--.gitlab-ci/Dockerfile.old2
-rwxr-xr-x.gitlab-ci/run-docker-old.sh2
-rwxr-xr-x.gitlab-ci/run-docker.sh2
4 files changed, 3 insertions, 4 deletions
diff --git a/.gitlab-ci/Dockerfile b/.gitlab-ci/Dockerfile
index e10aaa97..5a4e0e72 100644
--- a/.gitlab-ci/Dockerfile
+++ b/.gitlab-ci/Dockerfile
@@ -42,7 +42,6 @@ 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 3.6.14
RUN pyenv install --debug 3.7.11
RUN pyenv install --debug 3.8.12
RUN pyenv install --debug 3.9.7
diff --git a/.gitlab-ci/Dockerfile.old b/.gitlab-ci/Dockerfile.old
index beffb9be..3e7b8f82 100644
--- a/.gitlab-ci/Dockerfile.old
+++ b/.gitlab-ci/Dockerfile.old
@@ -1,4 +1,4 @@
-FROM i386/ubuntu:bionic
+FROM i386/debian:buster
ENV DEBIAN_FRONTEND=noninteractive
diff --git a/.gitlab-ci/run-docker-old.sh b/.gitlab-ci/run-docker-old.sh
index bd11cbff..32b37156 100755
--- a/.gitlab-ci/run-docker-old.sh
+++ b/.gitlab-ci/run-docker-old.sh
@@ -2,7 +2,7 @@
set -e
-TAG="registry.gitlab.gnome.org/gnome/pygobject/old:v4"
+TAG="registry.gitlab.gnome.org/gnome/pygobject/old:v5"
sudo docker build --build-arg HOST_USER_ID="$UID" --tag "${TAG}" \
--file "Dockerfile.old" .
diff --git a/.gitlab-ci/run-docker.sh b/.gitlab-ci/run-docker.sh
index 48c3036f..e6aaaa0b 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:v16"
+TAG="registry.gitlab.gnome.org/gnome/pygobject/main:v17"
sudo docker build --build-arg HOST_USER_ID="$UID" --tag "${TAG}" \
--file "Dockerfile" .