diff --git a/daily_tests/daily_nightly_tests_report.py b/daily_tests/daily_nightly_tests_report.py index c01ac7f..20782f6 100755 --- a/daily_tests/daily_nightly_tests_report.py +++ b/daily_tests/daily_nightly_tests_report.py @@ -38,6 +38,11 @@ # Format is test for OS and king of test, what TMT Plan is used and MSG to mail ("fedora-test", "nightly-container-f", "Fedora test results:"), ("c9s-test", "nightly-container-centos-stream-9", "CentOS Stream 9 test results:"), + ( + "c10s-test", + "nightly-container-centos-stream-10", + "CentOS Stream 10 test results:", + ), ("rhel8-test", "nightly-container-rhel8", "RHEL-8 test results:"), ( "rhel8-test-openshift-4", diff --git a/run_nightly_tests.sh b/run_nightly_tests.sh index c8b9a5a..f071688 100755 --- a/run_nightly_tests.sh +++ b/run_nightly_tests.sh @@ -33,6 +33,11 @@ elif [[ "$TARGET" == "c10s" ]]; then TMT_REPO="https://github.com/sclorg/sclorg-testing-farm" TMT_DIR="sclorg-testing-farm" TFT_PLAN="nightly-container-centos-stream-10" +elif [[ "$TARGET" == "c10s" ]]; then + COMPOSE="1MT-CentOS-Stream-10" + TMT_REPO="https://github.com/sclorg/sclorg-testing-farm" + TMT_DIR="sclorg-testing-farm" + TFT_PLAN="nightly-container-centos-stream-10" else echo "This target is not supported" exit 1