forked from chronoxor/NetCoreServer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.appveyor.yml
More file actions
42 lines (34 loc) · 776 Bytes
/
.appveyor.yml
File metadata and controls
42 lines (34 loc) · 776 Bytes
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
37
38
39
40
41
42
# Specify version format
version: "5.0.7.{build}"
# Image to use
image: Visual Studio 2019
# Branches to build
branches:
only:
- master
# Including commits with 'build' comment
only_commits:
message: build
# Build matrix
environment:
matrix:
- type: VisualStudio
build: call vs.bat
command: cmd /C
# Allow to fail on first error in matrix
matrix:
fast_finish: true
# Scripts that run after cloning repository
install:
# Chocolatey
- choco upgrade chocolatey
# Visual Studio
- if "%type%"=="VisualStudio" call "C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Auxiliary\Build\vcvars64.bat"
# CMake
- '%command% "cmake --version"'
# Build scripts
build_script:
- cd build
- '%build%'
# Test scripts
test: off