-
Notifications
You must be signed in to change notification settings - Fork 11
/
appveyor.yml
36 lines (36 loc) · 1.03 KB
/
appveyor.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
pull_requests:
do_not_increment_build_number: true
skip_branch_with_pr: true
version: '{build}'
branches:
only:
- master
environment:
repo_token:
secure: 2IfF4fXwHC6ix7KXkbvghzUT7zFzOjWWQKypfm/efc7XrUAHZdplFuLU08JJ37yk
clone_depth: 1
image: Visual Studio 2017
configuration:
- Debug
- Release
cache:
- packages -> **\*.csproj
- C:\ProgramData\chocolatey\bin -> appveyor.yml
- C:\ProgramData\chocolatey\lib -> appveyor.yml
install:
- git submodule update --init --recursive
- choco install doxygen.install codecov opencover.portable
# Install Rust and Cargo
# (Based on from https://github.com/rust-lang/libc/blob/master/appveyor.yml)
- 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
before_build:
- nuget restore MapDiffBot.sln
build:
project: MapDiffBot.sln
verbosity: minimal
after_test:
- ps: Tools/BuildDox.ps1