Skip to content
This repository was archived by the owner on Sep 12, 2025. It is now read-only.

Commit f6fb429

Browse files
authored
fix: remove -e from set options in parse-test-results.sh (#6)
Allow test_results.txt to be processed even when tests fail. Previously, -e was causing immediate script exit on test failures before GitHub outputs could be set, preventing proper status reporting and regression log uploads. Now the script properly handles both pass and fail cases.
1 parent 2c8302c commit f6fb429

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

build_automation/cloudberry/scripts/parse-test-results.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@
7676
#
7777
# --------------------------------------------------------------------
7878

79-
set -euo pipefail
79+
set -uo pipefail
8080

8181
# Default log file path
8282
DEFAULT_LOG_PATH="build-logs/details/make-${MAKE_NAME}.log"

0 commit comments

Comments
 (0)