summaryrefslogtreecommitdiffstats
path: root/appveyor.yml
blob: 60870338049124a63649d58e68bd9af22bdf9a7a (plain)
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
29
environment:
  matrix:
    - TARGET: x86_64-pc-windows-msvc
      OTHER_TARGET: i686-pc-windows-msvc
      MAKE_TARGETS: test-unit-x86_64-pc-windows-msvc
      TOOLCHAIN: stable
    - TARGET: x86_64-pc-windows-msvc
      OTHER_TARGET: i686-pc-windows-msvc
      MAKE_TARGETS: test-unit-x86_64-pc-windows-msvc
      TOOLCHAIN: beta
    - TARGET: x86_64-pc-windows-msvc
      OTHER_TARGET: i686-pc-windows-msvc
      MAKE_TARGETS: test-unit-x86_64-pc-windows-msvc
      TOOLCHAIN: nightly

install:
  - appveyor-retry appveyor DownloadFile https://win.rustup.rs/ -FileName rustup-init.exe
  - rustup-init.exe -y --default-host x86_64-pc-windows-msvc --default-toolchain %TOOLCHAIN%
  - set PATH=%PATH%;C:\Users\appveyor\.cargo\bin
  - rustup target add %OTHER_TARGET%
  - rustc -V
  - cargo -V

clone_depth: 1

build: false

test_script:
  - cargo test --features all