File tree 1 file changed +1
-9
lines changed
1 file changed +1
-9
lines changed Original file line number Diff line number Diff line change @@ -2,16 +2,12 @@ environment:
2
2
matrix :
3
3
- TARGET : x86_64-pc-windows-msvc
4
4
OTHER_TARGET : i686-pc-windows-msvc
5
- - TARGET : x86_64-pc-windows-msvc
6
- MINIMAL_VERSIONS : true
7
- CFG_DISABLE_CROSS_TESTS : 1
8
5
9
6
install :
10
7
- if NOT defined APPVEYOR_PULL_REQUEST_NUMBER if "%APPVEYOR_REPO_BRANCH%" == "master" appveyor exit
11
8
- appveyor-retry appveyor DownloadFile https://win.rustup.rs/ -FileName rustup-init.exe
12
9
- rustup-init.exe -y --default-host x86_64-pc-windows-msvc --default-toolchain nightly
13
10
- set PATH=%PATH%;C:\Users\appveyor\.cargo\bin
14
- - if defined MINIMAL_VERSIONS rustup toolchain install 1.31.0
15
11
- if defined OTHER_TARGET rustup target add %OTHER_TARGET%
16
12
- rustc -V
17
13
- cargo -V
@@ -22,8 +18,4 @@ clone_depth: 1
22
18
build : false
23
19
24
20
test_script :
25
- # we don't have ci time to run the full `cargo test` with `minimal-versions` like
26
- # - if defined MINIMAL_VERSIONS cargo +nightly generate-lockfile -Z minimal-versions && cargo +stable test
27
- # so we just run `cargo check --tests` like
28
- - if defined MINIMAL_VERSIONS cargo +nightly generate-lockfile -Z minimal-versions && cargo +1.31.0 check --tests --features=deny-warnings
29
- - if NOT defined MINIMAL_VERSIONS cargo test --features=deny-warnings
21
+ - cargo test --features=deny-warnings
You can’t perform that action at this time.
0 commit comments