1environment:
2  RUSTUP_USE_HYPER: 1
3  CARGO_HTTP_CHECK_REVOKE: false
4
5  matrix:
6    - TARGET: x86_64-pc-windows-msvc
7      OTHER_TARGET: i686-pc-windows-msvc
8      MAKE_TARGETS: test-unit-x86_64-pc-windows-msvc
9
10install:
11  - appveyor-retry appveyor DownloadFile https://win.rustup.rs/ -FileName rustup-init.exe
12  - rustup-init.exe -y --default-host x86_64-pc-windows-msvc --default-toolchain nightly
13  - set PATH=%PATH%;C:\Users\appveyor\.cargo\bin
14  - rustup target add %OTHER_TARGET%
15  - rustc -V
16  - cargo -V
17  - git submodule update --init
18
19clone_depth: 1
20
21build: false
22
23test_script:
24  - cargo build
25  - cargo test
26  - cargo run --example example
27  - cargo run --example minimal
28  - cargo bench