Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci: fix log size limit failure by increasing limit #18117

Merged
merged 4 commits into from
Aug 20, 2024
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 10 additions & 2 deletions ci/scripts/run-e2e-test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,8 @@ cluster_start() {
fi
}

# `cluster_stop false` will not check the log.
# shellcheck disable=SC2120
cluster_stop() {
if [[ $mode == "standalone" ]]
then
Expand All @@ -60,7 +62,13 @@ cluster_stop() {
then
stop_single_node
else
risedev ci-kill
check_log=${1:-"true"}
if [[ $check_log == "true" ]]
then
risedev ci-kill
else
risedev kill
fi
fi
}

Expand Down Expand Up @@ -134,7 +142,7 @@ sqllogictest -p 4566 -d dev './e2e_test/udf/js_udf.slt'
sqllogictest -p 4566 -d dev './e2e_test/udf/python_udf.slt'

echo "--- Kill cluster"
cluster_stop
cluster_stop false

echo "--- e2e, $mode, generated"
RUST_LOG="info,risingwave_stream=info,risingwave_batch=info,risingwave_storage=info" \
Expand Down
Loading