Skip to content

Commit 512fccb

Browse files
committed
Remove minimal versions build from Windows
Looks like minimal versions don't work with the 0.6.5 release of `rand` on Windows...
1 parent d19b41f commit 512fccb

File tree

1 file changed

+1
-9
lines changed

1 file changed

+1
-9
lines changed

appveyor.yml

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,12 @@ environment:
22
matrix:
33
- TARGET: x86_64-pc-windows-msvc
44
OTHER_TARGET: i686-pc-windows-msvc
5-
- TARGET: x86_64-pc-windows-msvc
6-
MINIMAL_VERSIONS: true
7-
CFG_DISABLE_CROSS_TESTS: 1
85

96
install:
107
- if NOT defined APPVEYOR_PULL_REQUEST_NUMBER if "%APPVEYOR_REPO_BRANCH%" == "master" appveyor exit
118
- appveyor-retry appveyor DownloadFile https://win.rustup.rs/ -FileName rustup-init.exe
129
- rustup-init.exe -y --default-host x86_64-pc-windows-msvc --default-toolchain nightly
1310
- set PATH=%PATH%;C:\Users\appveyor\.cargo\bin
14-
- if defined MINIMAL_VERSIONS rustup toolchain install 1.31.0
1511
- if defined OTHER_TARGET rustup target add %OTHER_TARGET%
1612
- rustc -V
1713
- cargo -V
@@ -22,8 +18,4 @@ clone_depth: 1
2218
build: false
2319

2420
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

0 commit comments

Comments
 (0)