This is an automated email from the ASF dual-hosted git repository. tvb pushed a commit to branch tristan/support-py36 in repository https://gitbox.apache.org/repos/asf/buildstream.git
commit e3013e32462292fe57998f75c711028a66085947 Author: Tristan van Berkom <[email protected]> AuthorDate: Tue Apr 18 20:22:46 2023 +0900 Revert "Don't run CI on ubuntu 18.04 and centos 7.7" This reverts commit 09e1ed59640f29db5544fd495df188a025f16b20. Only re-enable centos-7 tests, lets get this baby working again with python 3.6, people love centos7. --- .github/compose/ci.docker-compose.yml | 8 ++++++++ .github/run-ci.sh | 2 +- .github/workflows/ci.yml | 1 + 3 files changed, 10 insertions(+), 1 deletion(-) diff --git a/.github/compose/ci.docker-compose.yml b/.github/compose/ci.docker-compose.yml index 19e0b2a5d..31490738c 100644 --- a/.github/compose/ci.docker-compose.yml +++ b/.github/compose/ci.docker-compose.yml @@ -34,6 +34,14 @@ services: <<: *tests-template image: registry.gitlab.com/buildstream/buildstream-docker-images/testsuite-debian:10-${CI_IMAGE_VERSION:-latest} + ubuntu-18.04: + <<: *tests-template + image: registry.gitlab.com/buildstream/buildstream-docker-images/testsuite-ubuntu:18.04-${CI_IMAGE_VERSION:-latest} + + centos-7.7.1908: + <<: *tests-template + image: registry.gitlab.com/buildstream/buildstream-docker-images/testsuite-centos:7.7.1908-${CI_IMAGE_VERSION:-latest} + # Ensure that tests also pass in the absence of a sandboxing tool fedora-missing-deps: <<: *tests-template diff --git a/.github/run-ci.sh b/.github/run-ci.sh index bff9de899..18b0a3bab 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-10 fedora-36 fedora-37 fedora-missing-deps; do + for test_name in mypy debian-10 centos-7.7.1908 fedora-36 fedora-37 fedora-missing-deps; do if ! runTest "${test_name}"; then echo "Tests failed" exit 1 diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 307bbb88f..a68dfda1c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -39,6 +39,7 @@ jobs: - debian-10 - fedora-36 - fedora-37 + - centos-7.7.1908 - fedora-missing-deps - lint - mypy
