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

fix(ci): fix standalone tests startup #19067

Merged
merged 4 commits into from
Oct 27, 2024
Merged
Changes from all 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
15 changes: 12 additions & 3 deletions ci/scripts/run-e2e-test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,11 @@ cluster_start() {
mkdir -p "$PREFIX_LOG"
risedev clean-data
risedev pre-start-dev
risedev dev standalone-minio-sqlite &
PID=$!
sleep 1
start_standalone "$PREFIX_LOG"/standalone.log &
risedev dev standalone-minio-sqlite
wait $PID
elif [[ $mode == "single-node" ]]; then
mkdir -p "$PREFIX_LOG"
risedev clean-data
Expand Down Expand Up @@ -255,8 +258,11 @@ if [[ "$mode" == "standalone" ]]; then
mkdir -p "$PREFIX_LOG"
risedev clean-data
risedev pre-start-dev
risedev dev standalone-minio-sqlite-compactor &
PID=$!
sleep 1
start_standalone_without_compactor "$PREFIX_LOG"/standalone.log &
risedev dev standalone-minio-sqlite-compactor
wait $PID
wait_standalone
if compactor_is_online
then
Expand All @@ -272,8 +278,11 @@ if [[ "$mode" == "standalone" ]]; then
mkdir -p "$PREFIX_LOG"
risedev clean-data
risedev pre-start-dev
risedev dev standalone-minio-sqlite &
PID=$!
sleep 1
start_standalone "$PREFIX_LOG"/standalone.log &
risedev dev standalone-minio-sqlite
wait $PID
wait_standalone
if ! compactor_is_online
then
Expand Down
Loading