You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@buildstream.apache.org by ju...@apache.org on 2022/02/15 18:59:19 UTC

[buildstream] branch bst-1 updated: Stop running CI for distro versions with Python 3.6 This does not drop Python 3.6 support and fixes for Python 3.6 compatibility are accepted.

This is an automated email from the ASF dual-hosted git repository.

juergbi pushed a commit to branch bst-1
in repository https://gitbox.apache.org/repos/asf/buildstream.git


The following commit(s) were added to refs/heads/bst-1 by this push:
     new eb6a75c  Stop running CI for distro versions with Python 3.6 This does not drop Python 3.6 support and fixes for Python 3.6 compatibility are accepted.
     new 7904737  Merge pull request #1591 from nanonyme/nanonyme/downgrade-python3.6-support
eb6a75c is described below

commit eb6a75cb80b92501f88bc88a1be220a33d6bd442
Author: Seppo Yli-Olli <se...@gmail.com>
AuthorDate: Sat Feb 12 18:19:26 2022 +0200

    Stop running CI for distro versions with Python 3.6
    This does not drop Python 3.6 support and fixes for
    Python 3.6 compatibility are accepted.
---
 .github/compose/ci.docker-compose.yml | 8 --------
 .github/run-ci.sh                     | 2 --
 .github/workflows/ci.yml              | 2 --
 NEWS                                  | 3 +++
 4 files changed, 3 insertions(+), 12 deletions(-)

diff --git a/.github/compose/ci.docker-compose.yml b/.github/compose/ci.docker-compose.yml
index d1388b1..914459e 100644
--- a/.github/compose/ci.docker-compose.yml
+++ b/.github/compose/ci.docker-compose.yml
@@ -34,14 +34,6 @@ services:
     <<: *tests-template
     image: registry.gitlab.com/buildstream/buildstream-docker-images/testsuite-debian:10-${CI_IMAGE_VERSION:-latest}
 
-  ubuntu-18.04:
-    <<: *tests-template
-    image: registry.gitlab.com/buildstream/buildstream-docker-images/testsuite-ubuntu:18.04-${CI_IMAGE_VERSION:-latest}
-
-  centos-7.7.1908:
-    <<: *tests-template
-    image: registry.gitlab.com/buildstream/buildstream-docker-images/testsuite-centos:7.7.1908-${CI_IMAGE_VERSION:-latest}
-
   docs:
     <<: *tests-template
     command: tox -e docs
diff --git a/.github/run-ci.sh b/.github/run-ci.sh
index 02412e5..9a26ef9 100755
--- a/.github/run-ci.sh
+++ b/.github/run-ci.sh
@@ -69,8 +69,6 @@ if [ -z "${test_names}" ]; then
     runTest "debian-10"
     runTest "fedora-34"
     runTest "fedora-35"
-    runTest "ubuntu-18.04"
-    runTest "centos-7.7.1908"
 else
     for test_name in "${test_names}"; do
 	runTest "${test_name}"
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 85ee431..aa43865 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -28,8 +28,6 @@ jobs:
           - debian-10
           - fedora-34
           - fedora-35
-          - ubuntu-18.04
-          - centos-7.7.1908
           - lint
 
     steps:
diff --git a/NEWS b/NEWS
index 04e4f27..c2078ec 100644
--- a/NEWS
+++ b/NEWS
@@ -6,6 +6,9 @@ buildstream 1.6.4
 
   o script element plugin now supports `create-dev-shm`
 
+  o Python 3.6 is no longer tested in CI but support is maintained on
+    best effort level.
+
 =================
 buildstream 1.6.3
 =================