Try using a slightly more modern yml to address appveyor build bug
This uses the script from here with all comments stripped: https://github.com/starkat99/appveyor-rust/ The beta targets have also been removed to keep build times low.
This commit is contained in:
parent
6164f83147
commit
61c3520d70
44
appveyor.yml
44
appveyor.yml
|
@ -1,16 +1,38 @@
|
||||||
|
os: Visual Studio 2015
|
||||||
|
|
||||||
|
environment:
|
||||||
|
matrix:
|
||||||
|
# MSVC
|
||||||
|
- channel: stable
|
||||||
|
target: x86_64-pc-windows-msvc
|
||||||
|
- channel: stable
|
||||||
|
target: i686-pc-windows-msvc
|
||||||
|
- channel: nightly
|
||||||
|
target: x86_64-pc-windows-msvc
|
||||||
|
- channel: nightly
|
||||||
|
target: i686-pc-windows-msvc
|
||||||
|
# GNU
|
||||||
|
- channel: stable
|
||||||
|
target: x86_64-pc-windows-gnu
|
||||||
|
- channel: stable
|
||||||
|
target: i686-pc-windows-gnu
|
||||||
|
- channel: nightly
|
||||||
|
target: x86_64-pc-windows-gnu
|
||||||
|
- channel: nightly
|
||||||
|
target: i686-pc-windows-gnu
|
||||||
|
|
||||||
|
matrix:
|
||||||
|
allow_failures:
|
||||||
|
- channel: nightly
|
||||||
|
|
||||||
install:
|
install:
|
||||||
- ps: Start-FileDownload 'https://static.rust-lang.org/dist/rust-nightly-i686-pc-windows-gnu.exe'
|
- appveyor DownloadFile https://win.rustup.rs/ -FileName rustup-init.exe
|
||||||
- ps: Start-FileDownload 'https://static.rust-lang.org/cargo-dist/cargo-nightly-i686-pc-windows-gnu.tar.gz'
|
- rustup-init -yv --default-toolchain %channel% --default-host %target%
|
||||||
- rust-nightly-i686-pc-windows-gnu.exe /VERYSILENT /NORESTART /DIR="C:\Program Files (x86)\Rust"
|
- set PATH=%PATH%;%USERPROFILE%\.cargo\bin
|
||||||
- 7z e cargo-nightly-i686-pc-windows-gnu.tar.gz
|
- rustc -vV
|
||||||
- 7z x cargo-nightly-i686-pc-windows-gnu.tar
|
- cargo -vV
|
||||||
- SET PATH=%PATH%;C:\Program Files (x86)\Rust\bin
|
|
||||||
- SET PATH=%PATH%;%CD%\cargo-nightly-i686-pc-windows-gnu\bin
|
|
||||||
- rustc -V
|
|
||||||
- cargo -V
|
|
||||||
|
|
||||||
build: false
|
build: false
|
||||||
|
|
||||||
test_script:
|
test_script:
|
||||||
- cargo build --verbose
|
- cargo test --verbose %cargoflags%
|
||||||
# - cargo test --verbose
|
|
||||||
|
|
Loading…
Reference in New Issue