This is an automated email from the ASF dual-hosted git repository. juergbi pushed a commit to branch juerg/ci in repository https://gitbox.apache.org/repos/asf/buildstream.git
commit d4a470116f31a75214215dd956f381f5daa84479 Author: Jürg Billeter <[email protected]> AuthorDate: Sun Aug 11 20:04:20 2024 +0200 ci: Run tests also on Debian 11 Debian 11 uses Python 3.9, which is not covered by any other CI images. --- .github/compose/ci.docker-compose.yml | 4 ++++ .github/run-ci.sh | 2 +- .github/workflows/ci.yml | 1 + 3 files changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/compose/ci.docker-compose.yml b/.github/compose/ci.docker-compose.yml index 15b6da728..d5b783c35 100644 --- a/.github/compose/ci.docker-compose.yml +++ b/.github/compose/ci.docker-compose.yml @@ -22,6 +22,10 @@ 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} + fedora-40: <<: *tests-template image: registry.gitlab.com/buildstream/buildstream-docker-images/testsuite-fedora:40-${CI_IMAGE_VERSION:-latest} diff --git a/.github/run-ci.sh b/.github/run-ci.sh index 72dc94c9d..97c43430b 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 fedora-40 fedora-missing-deps ubuntu-20.04; do + for test_name in mypy debian-11 fedora-40 fedora-missing-deps ubuntu-20.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 c917ecbbb..ed269ee55 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -36,6 +36,7 @@ jobs: # The names here should map to a valid service defined in # "../compose/ci.docker-compose.yml" test-name: + - debian-11 - fedora-40 - fedora-missing-deps - ubuntu-20.04
