f6cbf1bbd3
quickcheckv0.7.2 comes with lazy_static v1.2.0 which only support Rust 1.24.1. See https://github.com/rust-lang-nursery/lazy-static.rs/releases/tag/1.2.0
13 lines
414 B
YAML
13 lines
414 B
YAML
install:
|
|
- ps: Start-FileDownload 'https://static.rust-lang.org/dist/rust-1.24.1-i686-pc-windows-gnu.exe'
|
|
- rust-1.24.1-i686-pc-windows-gnu.exe /VERYSILENT /NORESTART /DIR="C:\Program Files (x86)\Rust"
|
|
- SET PATH=%PATH%;C:\Program Files (x86)\Rust\bin
|
|
- SET PATH=%PATH%;C:\MinGW\bin
|
|
- rustc -V
|
|
- cargo -V
|
|
- git submodule update --init --recursive
|
|
|
|
build: false
|
|
|
|
test_script:
|
|
- cargo test --verbose
|