41: Add appveyor CI support r=kvark a=msiglreith

Fixes #40
This commit is contained in:
bors[bot] 2018-03-01 13:56:18 +00:00
commit aaf53822bf
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"
] ]