mirror of
https://github.com/SpaceManiac/SpacemanDMM.git
synced 2025-12-23 05:36:47 +00:00
Add CI
This commit is contained in:
parent
4aa6a998bb
commit
8a0e8e228c
1 changed files with 23 additions and 0 deletions
23
appveyor.yml
Normal file
23
appveyor.yml
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
pull_requests:
|
||||
do_not_increment_build_number: true
|
||||
version: '{build}'
|
||||
branches:
|
||||
only:
|
||||
- master
|
||||
environment:
|
||||
matrix:
|
||||
- BUILD_POSTFIX: "--all"
|
||||
- BUILD_POSTFIX: "--all --release"
|
||||
shallow_clone: true
|
||||
image: Visual Studio 2017
|
||||
cache:
|
||||
- target\debug\deps -> Cargo.lock
|
||||
- target\release\deps -> Cargo.lock
|
||||
install:
|
||||
- curl -sSf -o rustup-init.exe https://win.rustup.rs
|
||||
- rustup-init.exe --default-host x86_64-pc-windows-msvc --default-toolchain stable -y
|
||||
- set PATH=%PATH%;C:\Users\appveyor\.cargo\bin
|
||||
- rustc -Vv
|
||||
- cargo -V
|
||||
build_script:
|
||||
- cargo build %BUILD_POSTFIX%
|
||||
Loading…
Add table
Add a link
Reference in a new issue