Skip to content

Commit

Permalink
Fix small bugs of ci (#163)
Browse files Browse the repository at this point in the history
  • Loading branch information
CalvinNeo authored Sep 9, 2022
1 parent 898aa13 commit 72e8322
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion ci_check.sh
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,8 @@ elif [[ $M == "testold" ]]; then
cargo test --features compat_old_proxy --package tests --test failpoints cases::test_import_service
cargo test --features compat_old_proxy --package tests --test failpoints cases::test_proxy_replica_read
elif [[ $M == "testnew" ]]; then
export ENGINE_LABEL_VALUE=tiflash
export RUST_BACKTRACE=full
# tests based on new-mock-engine-store, with compat for new proxy
cargo test --package tests --test proxy normal::store
cargo test --package tests --test proxy normal::region
Expand All @@ -33,5 +35,9 @@ elif [[ $M == "testnew" ]]; then
cargo test --package tests --test proxy proxy
elif [[ $M == "debug" ]]; then
# export RUSTC_WRAPPER=~/.cargo/bin/sccache
make debug
export ENGINE_LABEL_VALUE=tiflash
make debug
elif [[ $M == "release" ]]; then
export ENGINE_LABEL_VALUE=tiflash
make release
fi

0 comments on commit 72e8322

Please sign in to comment.