forked from chronoxor/CSharpServer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.appveyor.yml
46 lines (38 loc) · 872 Bytes
/
.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
37
38
39
40
41
42
43
44
45
46
# Specify version format
version: "1.2.0.{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"'
# gil
- set PATH=C:\Python37;C:\Python37\Scripts;%PATH%
- pip3 install gil
- gil update
# Build scripts
build_script:
- cd build
- '%build%'
# Test scripts
test: off