Skip to content

Commit 4bd3eb7

Browse files
committed
Put test execution into a separate script
Signed-off-by: Alexander Rodin <rodin.alexander@gmail.com>
1 parent 9e333f0 commit 4bd3eb7

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.circleci/config.yml

+1-5
Original file line numberDiff line numberDiff line change
@@ -105,11 +105,7 @@ jobs:
105105
- run:
106106
name: Build and test
107107
shell: cmd.exe
108-
command: |
109-
set RUSTFLAGS=-Ctarget-feature=+crt-static
110-
set PATH=%USERPROFILE%/.cargo;%PATH%
111-
del rust-toolchain # to use nightly
112-
cargo test --no-default-features --features "leveldb leveldb/leveldb-sys-3 rdkafka rdkafka/cmake_build"
108+
command: scripts\test-msvc.bat
113109
# - run:
114110
# name: Build and test
115111
# shell: bash

scripts/test-msvc.bat

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
set RUSTFLAGS=-Ctarget-feature=+crt-static
2+
set PATH=%USERPROFILE%\.cargo\bin;%PATH%
3+
del rust-toolchain
4+
cargo test --no-default-features --features "leveldb leveldb/leveldb-sys-3 rdkafka rdkafka/cmake_build"

0 commit comments

Comments
 (0)