File tree 1 file changed +53
-0
lines changed
1 file changed +53
-0
lines changed Original file line number Diff line number Diff line change
1
+ # Notes:
2
+ # - Minimal appveyor.yml file is an empty file. All sections are optional.
3
+ # - Indent each level of configuration with 2 spaces. Do not use tabs!
4
+ # - All section names are case-sensitive.
5
+ # - Section names should be unique on each level.
6
+
7
+ # ---------------------------------#
8
+ # general configuration #
9
+ # ---------------------------------#
10
+
11
+ # version format
12
+ # version: 0.10.{build}
13
+
14
+ # branches to build
15
+ branches :
16
+ # blacklist
17
+ except :
18
+ - gh-pages
19
+
20
+ # Do not build on tags (GitHub only)
21
+ skip_tags : true
22
+
23
+ # ---------------------------------#
24
+ # environment configuration #
25
+ # ---------------------------------#
26
+
27
+ os : Windows Server 2012
28
+
29
+ # scripts that run after cloning repository
30
+ install :
31
+ # install Win-Flex-Bison
32
+ # - cmd: cinst winflexbison -y
33
+
34
+ # ---------------------------------#
35
+ # build configuration #
36
+ # ---------------------------------#
37
+
38
+ # scripts to run before build
39
+ before_build :
40
+ - cmd : cmake .
41
+
42
+ # scripts to run *after* solution is built and *before* automatic packaging occurs (web apps, NuGet packages, Azure Cloud Services)
43
+ # before_package:
44
+
45
+ # scripts to run after build
46
+ # after_build:
47
+
48
+ # to run your custom scripts instead of automatic MSBuild
49
+ build_script :
50
+ - cmd : cmake --build .
51
+
52
+ # to disable automatic builds
53
+ # build: off
You can’t perform that action at this time.
0 commit comments