This is an automated email from the ASF dual-hosted git repository. juergbi pushed a commit to branch jbilleter/python3.14 in repository https://gitbox.apache.org/repos/asf/buildstream-plugins.git
commit 533a612d80d6a1ba01a73b7c4d114f2dcc0e0abc Author: Jürg Billeter <[email protected]> AuthorDate: Fri Oct 17 10:29:03 2025 +0200 ci: Drop Fedora 41 Fedora 41 and 42 use the same version of Python. --- .github/compose/ci.docker-compose.yml | 6 +----- .github/run-ci.sh | 2 +- .github/workflows/ci.yml | 1 - 3 files changed, 2 insertions(+), 7 deletions(-) diff --git a/.github/compose/ci.docker-compose.yml b/.github/compose/ci.docker-compose.yml index 7c07df6..45046df 100644 --- a/.github/compose/ci.docker-compose.yml +++ b/.github/compose/ci.docker-compose.yml @@ -1,7 +1,7 @@ version: '3.4' x-tests-template: &tests-template - image: registry.gitlab.com/buildstream/buildstream-docker-images/testsuite-fedora:41-${CI_IMAGE_VERSION:-latest} + image: registry.gitlab.com/buildstream/buildstream-docker-images/testsuite-fedora:42-${CI_IMAGE_VERSION:-latest} command: tox -vvvvv -- --color=yes --integration environment: TOXENV: ${CI_TOXENV_ALL} @@ -26,10 +26,6 @@ services: <<: *tests-template image: registry.gitlab.com/buildstream/buildstream-docker-images/testsuite-debian:11-${CI_IMAGE_VERSION:-latest} - fedora-41: - <<: *tests-template - image: registry.gitlab.com/buildstream/buildstream-docker-images/testsuite-fedora:41-${CI_IMAGE_VERSION:-latest} - fedora-42: <<: *tests-template image: registry.gitlab.com/buildstream/buildstream-docker-images/testsuite-fedora:42-${CI_IMAGE_VERSION:-latest} diff --git a/.github/run-ci.sh b/.github/run-ci.sh index 1c9ebcc..0217d83 100755 --- a/.github/run-ci.sh +++ b/.github/run-ci.sh @@ -67,7 +67,7 @@ function runTest() { if [ -z "${test_names}" ]; then - for test_name in "mypy debian-11 fedora-41 fedora-42 fedora-missing-deps ubuntu-22.04"; do + for test_name in "mypy debian-11 fedora-42 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 c12ad1b..a38e376 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -37,7 +37,6 @@ jobs: # "../compose/ci.docker-compose.yml" test-name: - debian-11 - - fedora-41 - fedora-42 - fedora-missing-deps - ubuntu-22.04
