19 lines
422 B
YAML
19 lines
422 B
YAML
environment:
|
|
matrix:
|
|
- TARGET: x86_64-pc-windows-msvc
|
|
BITS: 64
|
|
- TARGET: i686-pc-windows-msvc
|
|
BITS: 32
|
|
|
|
install:
|
|
- appveyor DownloadFile https://win.rustup.rs/ -FileName rustup-init.exe
|
|
- rustup-init.exe -y --default-host %TARGET%
|
|
- set PATH=%PATH%;%USERPROFILE%\.cargo\bin
|
|
- rustc --version
|
|
- cargo --version
|
|
|
|
build: false
|
|
|
|
test_script:
|
|
- 'cargo test --all-features'
|