mirror of
https://github.com/italicsjenga/portability.git
synced 2024-11-22 15:01:31 +11:00
Add appveyor CI support
This commit is contained in:
parent
c59ea3b5c7
commit
1f5f4410db
22
appveyor.yml
Normal file
22
appveyor.yml
Normal 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
|
Loading…
Reference in a new issue