This is an automated email from the ASF dual-hosted git repository. juergbi pushed a commit to branch jbilleter/python-3.9 in repository https://gitbox.apache.org/repos/asf/buildstream.git
commit b7ad67a4a2b3f6945a2feaed98052309610f3cc5 Author: Jürg Billeter <[email protected]> AuthorDate: Sun Nov 2 18:59:23 2025 +0100 ci: Don't run tests on Debian 11 It uses Python 3.9, which is no longer maintained. --- .github/compose/ci.docker-compose.yml | 4 ---- .github/run-ci.sh | 2 +- .github/workflows/ci.yml | 1 - 3 files changed, 1 insertion(+), 6 deletions(-) diff --git a/.github/compose/ci.docker-compose.yml b/.github/compose/ci.docker-compose.yml index 75ecc995f..69f7016f9 100644 --- a/.github/compose/ci.docker-compose.yml +++ b/.github/compose/ci.docker-compose.yml @@ -22,10 +22,6 @@ x-tests-template: &tests-template services: - debian-11: - <<: *tests-template - image: registry.gitlab.com/buildstream/buildstream-docker-images/testsuite-debian:11-${CI_IMAGE_VERSION:-latest} - debian-12: <<: *tests-template image: registry.gitlab.com/buildstream/buildstream-docker-images/testsuite-debian:12-${CI_IMAGE_VERSION:-latest} diff --git a/.github/run-ci.sh b/.github/run-ci.sh index 9c6164249..8118d0abd 100755 --- a/.github/run-ci.sh +++ b/.github/run-ci.sh @@ -102,7 +102,7 @@ function runServiceTest() { if [ -z "${test_names}" ]; then - for test_name in mypy debian-11 debian-12 debian-13 fedora-42 fedora-43 fedora-missing-deps ubuntu-22.04; do + for test_name in mypy debian-12 debian-13 fedora-42 fedora-43 fedora-missing-deps ubuntu-22.04; do if ! runTest "${test_name}"; then echo "Tests failed" exit 1 diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 17d4f1b90..58540ebd0 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -36,7 +36,6 @@ jobs: # The names here should map to a valid service defined in # "../compose/ci.docker-compose.yml" test-name: - - debian-11 - debian-12 - debian-13 - fedora-42
