1install:
2  - ps: Start-FileDownload 'https://static.rust-lang.org/dist/rust-nightly-i686-pc-windows-gnu.exe'
3  - rust-nightly-i686-pc-windows-gnu.exe /VERYSILENT /NORESTART /DIR="C:\Program Files (x86)\Rust"
4  - SET PATH=%PATH%;C:\Program Files (x86)\Rust\bin
5  - rustc -V
6  - cargo -V
7  - git submodule update --init --recursive
8
9build: false
10
11environment:
12    RUST_BACKTRACE: full
13
14test_script:
15  - cargo build --verbose --all
16  - cargo doc   --verbose --all --no-deps
17
18  - cargo test  --verbose --all
19  - cargo test  --verbose --all --features serde
20