Skip to content

Commit 6bab885

Browse files
committed
Fix Cargo invocation
Signed-off-by: Alexander Rodin <rodin.alexander@gmail.com>
1 parent 4b1ed38 commit 6bab885

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

.circleci/config.yml

+4-3
Original file line numberDiff line numberDiff line change
@@ -103,12 +103,13 @@ jobs:
103103
msiexec /quiet /i perl-installer.msi
104104
del perl-installer.msi
105105
- run:
106-
name: Build Vector
106+
name: Build and test
107107
shell: bash
108108
command: |
109109
RUSTFLAGS=-Ctarget-feature=+crt-static
110-
rm rust-toolchain # because we need nightly
111-
cargo +nightly test --no-default-features --features="leveldb leveldb/leveldb-sys-3 rdkafka rdkafka/cmake_build
110+
FEATURES="leveldb leveldb/leveldb-sys-3 rdkafka rdkafka/cmake_build"
111+
rm rust-toolchain # to use nightly
112+
cargo test --no-default-features --features "$FEATURES"
112113
113114
test-stable:
114115
resource_class: xlarge

0 commit comments

Comments
 (0)