This is an automated email from the ASF dual-hosted git repository. juergbi pushed a commit to branch juerg/ci-test in repository https://gitbox.apache.org/repos/asf/buildstream-plugins.git
commit d879e2af3d689320bfa58abd8f1f68a43107544b Author: Jürg Billeter <[email protected]> AuthorDate: Fri Aug 2 12:52:47 2024 +0200 Debian 11 CI (Python 3.9) --- .github/common.env | 2 +- .github/compose/ci.docker-compose.yml | 4 ++++ .github/run-ci.sh | 2 +- .github/workflows/ci.yml | 1 + 4 files changed, 7 insertions(+), 2 deletions(-) diff --git a/.github/common.env b/.github/common.env index 166f1f6..5db9121 100644 --- a/.github/common.env +++ b/.github/common.env @@ -1,5 +1,5 @@ # Shared common variables -CI_IMAGE_VERSION=master-1361451963 +CI_IMAGE_VERSION=master-1397952717 CI_TOXENV_ALL=py38,py39,py310,py311,py312 CI_TOXENV_MASTER=py38-bst-master,py39-bst-master,py310-bst-master,py311-bst-master,py312-bst-master diff --git a/.github/compose/ci.docker-compose.yml b/.github/compose/ci.docker-compose.yml index 1cf5903..55e608f 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-38: <<: *tests-template image: registry.gitlab.com/buildstream/buildstream-docker-images/testsuite-fedora:38-${CI_IMAGE_VERSION:-latest} diff --git a/.github/run-ci.sh b/.github/run-ci.sh index 6cf5acd..42157b2 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 fedora-38 fedora-39 fedora-missing-deps ubuntu-20.04"; do + for test_name in "mypy debian-11 fedora-38 fedora-39 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 b73831b..30bc74b 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-38 - fedora-39 - fedora-missing-deps
