Add appveyor.yml

[skip travis]
This commit is contained in:
Kogia-sima 2020-06-07 05:04:05 +09:00
parent 82f7b7a64a
commit 3a9260f2a7
1 changed files with 28 additions and 0 deletions

28
appveyor.yml Normal file
View File

@ -0,0 +1,28 @@
platform:
- x64
environment:
matrix:
- RUST_VERSION: stable
PLATFORM_TARGET: x86_64
PLATFORM_VS: x64
install:
# Install Rust.
- appveyor-retry appveyor DownloadFile https://win.rustup.rs/ -FileName rustup-init.exe
- rustup-init.exe -yv --default-toolchain %RUST_VERSION% --default-host x86_64-pc-windows-msvc
- set PATH=%USERPROFILE%\.cargo\bin;%PATH%
- rustc -vV
- cargo -vV
build_script:
- cargo build --all-features --workspace
test_script:
- cargo test --all-features --workspace
notifications:
- provider: Email
on_build_success: false
on_build_failure: false
on_build_status_changed: false