From 1f5f4410dba62113eb46bbd3db5c046e07ede6ae Mon Sep 17 00:00:00 2001 From: msiglreith Date: Thu, 1 Mar 2018 13:15:59 +0100 Subject: [PATCH] Add appveyor CI support --- appveyor.yml | 22 ++++++++++++++++++++++ bors.toml | 3 ++- 2 files changed, 24 insertions(+), 1 deletion(-) create mode 100644 appveyor.yml diff --git a/appveyor.yml b/appveyor.yml new file mode 100644 index 0000000..da2a8ab --- /dev/null +++ b/appveyor.yml @@ -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 diff --git a/bors.toml b/bors.toml index 2ce6b39..661782e 100644 --- a/bors.toml +++ b/bors.toml @@ -1,3 +1,4 @@ status = [ - "continuous-integration/travis-ci/push" + "continuous-integration/travis-ci/push", + "continuous-integration/appveyor/branch" ]