Skip to content

Commit

Permalink
remove test from scripts
Browse files Browse the repository at this point in the history
Signed-off-by: Little-Wallace <[email protected]>
  • Loading branch information
Little-Wallace committed Jan 31, 2024
1 parent 15dfc0d commit ad5ac7b
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 20 deletions.
1 change: 0 additions & 1 deletion ci/scripts/cron-e2e-test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,4 @@ set -euo pipefail
source ci/scripts/common.sh
export RUN_COMPACTION=0;
export RUN_META_BACKUP=1;
export RUN_DELETE_RANGE=1;
source ci/scripts/run-e2e-test.sh
4 changes: 1 addition & 3 deletions ci/scripts/pr.env.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,4 @@ set -euo pipefail
# Don't run e2e compaction test in PR build
export RUN_COMPACTION=0;
# Don't run meta store backup/recovery test
export RUN_META_BACKUP=0;
# Don't run delete-range random test
export RUN_DELETE_RANGE=0;
export RUN_META_BACKUP=0;
16 changes: 0 additions & 16 deletions ci/scripts/run-e2e-test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -133,22 +133,6 @@ RUST_BACKTRACE=1 target/debug/risingwave_e2e_extended_mode_test --host 127.0.0.1
echo "--- Kill cluster"
cluster_stop

if [[ "$RUN_DELETE_RANGE" -eq "1" ]]; then
echo "--- e2e, ci-delete-range-test"
cargo make clean-data
RUST_LOG="info,risingwave_stream=info,risingwave_batch=info,risingwave_storage=info" \
cargo make ci-start ci-delete-range-test
download-and-decompress-artifact delete-range-test-"$profile" target/debug/
mv target/debug/delete-range-test-"$profile" target/debug/delete-range-test
chmod +x ./target/debug/delete-range-test

config_path=".risingwave/config/risingwave.toml"
./target/debug/delete-range-test --ci-mode --state-store hummock+minio://hummockadmin:[email protected]:9301/hummock001 --config-path "${config_path}"

echo "--- Kill cluster"
cluster_stop
fi

if [[ "$RUN_COMPACTION" -eq "1" ]]; then
echo "--- e2e, ci-compaction-test, nexmark_q7"
RUST_LOG="info,risingwave_stream=info,risingwave_batch=info,risingwave_storage=info" \
Expand Down

0 comments on commit ad5ac7b

Please sign in to comment.