-
Notifications
You must be signed in to change notification settings - Fork 593
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(stream): arrangement backfill background ddl (#14563)
- Loading branch information
Showing
8 changed files
with
159 additions
and
40 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
#!/usr/bin/env bash | ||
|
||
set -euo pipefail | ||
|
||
if [ $BUILDKITE_COMMAND_EXIT_STATUS -ne 0 ]; then | ||
mv .risingwave/log risedev-logs | ||
zip -q -r risedev-logs.zip risedev-logs/ | ||
buildkite-agent artifact upload risedev-logs.zip | ||
REGRESS_TEST_DIR="$PWD/src/tests/regress/output/results/" | ||
if [ -d "$REGRESS_TEST_DIR" ]; then | ||
mkdir regress-test-logs && cp src/tests/regress/output/results/* regress-test-logs/ | ||
zip -q -r regress-test.zip regress-test-logs/ | ||
buildkite-agent artifact upload regress-test-logs.zip | ||
fi | ||
if [ -e "$PWD/connector-node.log" ]; then | ||
buildkite-agent artifact upload "$PWD/connector-node.log" | ||
fi | ||
fi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters