1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
|
branches:
except:
- gh_pages
os:
- Visual Studio 2015
environment:
matrix:
- TARGET: i686-pc-windows-msvc
BITS: 32
- TARGET: x86_64-pc-windows-msvc
BITS: 64
install:
# Install Rust
- curl -sSf -o rustup-init.exe https://win.rustup.rs/
- rustup-init.exe -y --default-toolchain=stable-%TARGET%
- set PATH=%PATH%;C:\Users\appveyor\.cargo\bin
- rustc -V
- cargo -V
build: false
test_script:
- cargo build
- cargo test
cache:
- target
- C:\Users\appveyor\.cargo\registry
|