This is an automated email from the ASF dual-hosted git repository.
wolfboys pushed a commit to branch dev
in repository https://gitbox.apache.org/repos/asf/streampark.git
The following commit(s) were added to refs/heads/dev by this push:
new 2ce8b1606 [CI] Fail workflow when E2E tests fail (#4377)
2ce8b1606 is described below
commit 2ce8b1606cccb1b5ac071d26f9c31b853756f766
Author: Assert <[email protected]>
AuthorDate: Sun Jul 5 14:51:35 2026 +0800
[CI] Fail workflow when E2E tests fail (#4377)
The E2E result job previously exited 0 on failure, allowing PRs to merge
even when end-to-end tests did not pass.
Closes #4376
Co-authored-by: Cursor <[email protected]>
---
.github/workflows/e2e.yml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/.github/workflows/e2e.yml b/.github/workflows/e2e.yml
index 5e87c7ebd..c784f21ab 100644
--- a/.github/workflows/e2e.yml
+++ b/.github/workflows/e2e.yml
@@ -232,5 +232,5 @@ jobs:
fi
if [[ ${{ needs.e2e.result }} != 'success' ]]; then
echo "E2E Failed!"
- exit 0
+ exit 1
fi