20 lines
532 B
YAML
20 lines
532 B
YAML
environment:
|
|
matrix:
|
|
- TARGET: x86_64-pc-windows-gnu
|
|
BITS: 64
|
|
MSYS2: 1
|
|
- TARGET: x86_64-pc-windows-msvc
|
|
BITS: 64
|
|
install:
|
|
- appveyor DownloadFile https://win.rustup.rs/ -FileName rustup-init.exe
|
|
- rustup-init.exe -yv --default-host %target%
|
|
- set PATH=%PATH%;%USERPROFILE%\.cargo\bin
|
|
- if defined MSYS2 set PATH=C:\msys64\mingw%BITS%\bin;%PATH%
|
|
- rustc -vV
|
|
- cargo -vV
|
|
- git submodule update --init --recursive
|
|
build: false
|
|
test_script:
|
|
- cargo build --verbose --all
|
|
- cargo test --verbose --all
|