This is an automated email from the ASF dual-hosted git repository. espino pushed a commit to branch group-ic-test-support in repository https://gitbox.apache.org/repos/asf/cloudberry-devops-release.git
commit d403ccff810a1494edc47f1e5578e2bbe33de9ae Author: Ed Espino <[email protected]> AuthorDate: Sat Nov 30 01:49:55 2024 -0800 Support for test groups - return tests results in test_results.txt. --- .../cloudberry/scripts/parse-test-results.sh | 18 ------------------ 1 file changed, 18 deletions(-) diff --git a/build_automation/cloudberry/scripts/parse-test-results.sh b/build_automation/cloudberry/scripts/parse-test-results.sh index cf63eb3..ace00f6 100755 --- a/build_automation/cloudberry/scripts/parse-test-results.sh +++ b/build_automation/cloudberry/scripts/parse-test-results.sh @@ -96,23 +96,5 @@ if [ ! -f test_results.txt ]; then exit 2 fi -source test_results.txt - -# If in GitHub Actions, set outputs -if [ -n "${GITHUB_OUTPUT:-}" ]; then - { - echo "status=$STATUS" - echo "total_tests=$TOTAL_TESTS" - echo "failed_tests=$FAILED_TESTS" - echo "passed_tests=$PASSED_TESTS" - echo "ignored_tests=$IGNORED_TESTS" - [ -n "${FAILED_TEST_NAMES:-}" ] && echo "failed_test_names=$FAILED_TEST_NAMES" - [ -n "${IGNORED_TEST_NAMES:-}" ] && echo "ignored_test_names=$IGNORED_TEST_NAMES" - } >> "$GITHUB_OUTPUT" -fi - -# Clean up -rm -f test_results.txt - # Return the perl script's exit code exit $perl_exit_code --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
