blob: 3555d73838846f66c0e4984e4bbdfad42fbb4cb4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
environment:
matrix:
- TOOLCHAIN: stable
- TOOLCHAIN: nightly
matrix:
allow_failures:
- TOOLCHAIN: nightly
install:
- ps: Start-FileDownload 'https://static.rust-lang.org/rustup/dist/i686-pc-windows-gnu/rustup-init.exe'
- rustup-init.exe -y --default-toolchain %TOOLCHAIN%
- set PATH=%PATH%;%USERPROFILE%\.cargo\bin
build_script:
- cargo build --verbose --all-features
test_script:
- cargo test --verbose --all-features
cache:
- '%USERPROFILE%\.cargo'
- target
|