Add appveyor CI support

This commit is contained in:
msiglreith 2018-03-01 13:15:59 +01:00
parent c59ea3b5c7
commit 1f5f4410db
2 changed files with 24 additions and 1 deletions

22
appveyor.yml Normal file
View file

@ -0,0 +1,22 @@
skip_branch_with_pr: true
environment:
global:
PATH: '%PATH%;%USERPROFILE%\.cargo\bin'
RUST_BACKTRACE: full
matrix:
- CHANNEL: stable
TARGET: x86_64-pc-windows-msvc
- CHANNEL: nightly
TARGET: x86_64-pc-windows-msvc
install:
- curl -sSf -o rustup-init.exe https://win.rustup.rs
- rustup-init -yv --default-toolchain %CHANNEL% --default-host %TARGET%
- rustc -vV
- cargo -vV
build: false
test_script:
- cargo build --manifest-path libportability/Cargo.toml --features vulkan
- cargo build --manifest-path libportability/Cargo.toml --features dx12

View file

@ -1,3 +1,4 @@
status = [ status = [
"continuous-integration/travis-ci/push" "continuous-integration/travis-ci/push",
"continuous-integration/appveyor/branch"
] ]