This is an automated email from the ASF dual-hosted git repository. tvb pushed a commit to branch tristan/python3.11-bst1 in repository https://gitbox.apache.org/repos/asf/buildstream.git
commit 6c6ccdc63bae9a79f6c57b21b52bb9b5de2ca516 Author: Javier Jardón <[email protected]> AuthorDate: Sun Sep 18 21:21:24 2022 +0100 .github: Run tests in fedora 37 as well And remove soon to be deprecated fedora 35 --- .github/common.env | 2 +- .github/compose/ci.docker-compose.yml | 10 +++++----- .github/run-ci.sh | 2 +- .github/workflows/ci.yml | 2 +- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/common.env b/.github/common.env index e8f0776f4..1b19378f9 100644 --- a/.github/common.env +++ b/.github/common.env @@ -1,5 +1,5 @@ # Shared common variables -CI_IMAGE_VERSION=master-533491591 +CI_IMAGE_VERSION=master-643533272 CI_TOXENV_MAIN=py36-nocover,py37-nocover,py38-nocover,py39-nocover,py310-nocover CI_TOXENV_ALL="${CI_TOXENV_MAIN}" diff --git a/.github/compose/ci.docker-compose.yml b/.github/compose/ci.docker-compose.yml index 05a704b67..0f693e6eb 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:35-${CI_IMAGE_VERSION:-latest} + image: registry.gitlab.com/buildstream/buildstream-docker-images/testsuite-fedora:36-${CI_IMAGE_VERSION:-latest} command: tox -vvvvv -- --color=yes --integration environment: TOXENV: ${CI_TOXENV_ALL} @@ -22,14 +22,14 @@ x-tests-template: &tests-template services: - fedora-35: - <<: *tests-template - image: registry.gitlab.com/buildstream/buildstream-docker-images/testsuite-fedora:35-${CI_IMAGE_VERSION:-latest} - fedora-36: <<: *tests-template image: registry.gitlab.com/buildstream/buildstream-docker-images/testsuite-fedora:36-${CI_IMAGE_VERSION:-latest} + fedora-37: + <<: *tests-template + image: registry.gitlab.com/buildstream/buildstream-docker-images/testsuite-fedora:37-${CI_IMAGE_VERSION:-latest} + debian-10: <<: *tests-template image: registry.gitlab.com/buildstream/buildstream-docker-images/testsuite-debian:10-${CI_IMAGE_VERSION:-latest} diff --git a/.github/run-ci.sh b/.github/run-ci.sh index e923b9d2a..b19f8ad32 100755 --- a/.github/run-ci.sh +++ b/.github/run-ci.sh @@ -67,8 +67,8 @@ set -e if [ -z "${test_names}" ]; then runTest "lint" runTest "debian-10" - runTest "fedora-35" runTest "fedora-36" + runTest "fedora-37" else for test_name in "${test_names}"; do runTest "${test_name}" diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 79ea923b6..c6118d30f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -26,8 +26,8 @@ jobs: # "../compose/ci.docker-compose.yml" test-name: - debian-10 - - fedora-35 - fedora-36 + - fedora-37 - lint steps:
