summaryrefslogtreecommitdiffstats
path: root/vendor/fwdansi/appveyor.yml
blob: 076021ad792a8af32d082f2bcf3cb0abb626e470 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
environment:
  matrix:
    - TOOLCHAIN: 1.32.0
    - TOOLCHAIN: stable
    - TOOLCHAIN: beta
    - TOOLCHAIN: nightly

install:
  - appveyor DownloadFile https://win.rustup.rs/x86_64 -FileName rustup-init.exe
  - rustup-init -y --default-toolchain %TOOLCHAIN%
  - SET PATH=%PATH%;C:\Users\appveyor\.cargo\bin
  - rustc -vV
  - cargo -vV

test_script:
  - cargo build
  - cargo test
  - cargo run --example run-rustc

build: false