summaryrefslogtreecommitdiffstats
path: root/appveyor.yml
blob: 0c4948f38f62c799f286118e364a2ffea575e5eb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
install:
  - ps: Start-FileDownload 'https://static.rust-lang.org/dist/rust-1.4.0-x86_64-pc-windows-gnu.exe'
  - rust-1.4.0-x86_64-pc-windows-gnu.exe /VERYSILENT /NORESTART /DIR="C:\Program Files (x86)\Rust"
  - SET PATH=%PATH%;C:\Program Files (x86)\Rust\bin
  - rustc -V
  - cargo -V

build_script:
  - cargo build --verbose

test_script:
  - cargo test --verbose