File tree 1 file changed +2
-5
lines changed
1 file changed +2
-5
lines changed Original file line number Diff line number Diff line change @@ -2,10 +2,7 @@ environment:
2
2
matrix :
3
3
- TARGET : x86_64-pc-windows-msvc
4
4
OTHER_TARGET : i686-pc-windows-msvc
5
- MAKE_TARGETS : test-unit-x86_64-pc-windows-msvc
6
5
- TARGET : x86_64-pc-windows-msvc
7
- OTHER_TARGET : i686-pc-windows-msvc
8
- MAKE_TARGETS : test-unit-x86_64-pc-windows-msvc
9
6
MINIMAL_VERSIONS : true
10
7
CFG_DISABLE_CROSS_TESTS : 1
11
8
@@ -15,7 +12,7 @@ install:
15
12
- rustup-init.exe -y --default-host x86_64-pc-windows-msvc --default-toolchain nightly
16
13
- set PATH=%PATH%;C:\Users\appveyor\.cargo\bin
17
14
- if defined MINIMAL_VERSIONS rustup toolchain install 1.28.0
18
- - rustup target add %OTHER_TARGET%
15
+ - if defined OTHER_TARGET rustup target add %OTHER_TARGET%
19
16
- rustc -V
20
17
- cargo -V
21
18
- git submodule update --init
@@ -28,5 +25,5 @@ test_script:
28
25
# we don't have ci time to run the full `cargo test` with `minimal-versions` like
29
26
# - if defined MINIMAL_VERSIONS cargo +nightly generate-lockfile -Z minimal-versions && cargo +stable test
30
27
# so we just run `cargo check --tests` like
31
- - if defined MINIMAL_VERSIONS cargo +nightly generate-lockfile -Z minimal-versions && cargo check --tests
28
+ - if defined MINIMAL_VERSIONS cargo +nightly generate-lockfile -Z minimal-versions && cargo +1.28.0 check --tests
32
29
- if NOT defined MINIMAL_VERSIONS cargo test
You can’t perform that action at this time.
0 commit comments