-
Notifications
You must be signed in to change notification settings - Fork 594
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into tab/decrypt-func
- Loading branch information
Showing
218 changed files
with
3,550 additions
and
4,589 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,7 +13,7 @@ RUN sed -i 's|http://archive.ubuntu.com/ubuntu|http://us-east-2.ec2.archive.ubun | |
RUN apt-get update -yy && \ | ||
DEBIAN_FRONTEND=noninteractive apt-get -y install make build-essential cmake protobuf-compiler curl parallel python3 python3-pip \ | ||
openssl libssl-dev libsasl2-dev libcurl4-openssl-dev pkg-config bash openjdk-11-jdk wget unzip git tmux lld postgresql-client kafkacat netcat mysql-client \ | ||
maven zstd libzstd-dev locales -yy \ | ||
maven zstd libzstd-dev locales clang -yy \ | ||
&& rm -rf /var/lib/{apt,dpkg,cache,log}/ | ||
|
||
SHELL ["/bin/bash", "-c"] | ||
|
@@ -48,11 +48,11 @@ ENV CARGO_REGISTRIES_CRATES_IO_PROTOCOL=sparse | |
RUN curl -L --proto '=https' --tlsv1.2 -sSf https://raw.githubusercontent.com/cargo-bins/cargo-binstall/main/install-from-binstall-release.sh | bash | ||
RUN cargo binstall -y --no-symlinks cargo-llvm-cov cargo-nextest cargo-hakari cargo-sort cargo-cache cargo-audit \ | ||
[email protected] \ | ||
[email protected] [email protected] \ | ||
[email protected] \ | ||
[email protected] \ | ||
&& cargo cache -a \ | ||
&& rm -rf "/root/.cargo/registry/index" \ | ||
&& rm -rf "/root/.cargo/registry/cache" \ | ||
&& rm -rf "/root/.cargo/git/db" | ||
RUN cargo install [email protected] [email protected] | ||
RUN cargo uninstall cargo-binstall cargo-cache |
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
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
Oops, something went wrong.