Skip to content

Commit 1ac9bf2

Browse files
committed
(GH-14) Add standard AppVeyor config file
1 parent 3c8ed01 commit 1ac9bf2

File tree

1 file changed

+28
-4
lines changed

1 file changed

+28
-4
lines changed

.appveyor.yml

Lines changed: 28 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,30 @@
1+
#---------------------------------#
2+
# Build Image #
3+
#---------------------------------#
4+
image: Visual Studio 2017
5+
16
#---------------------------------#
27
# Build Script #
38
#---------------------------------#
49
build_script:
510
- ps: .\build.ps1 -Target AppVeyor
611

12+
#---------------------------------#
713
# Tests
14+
#---------------------------------#
815
test: off
916

17+
#---------------------------------#
18+
# Pull Requests #
19+
#---------------------------------#
20+
pull_requests:
21+
do_not_increment_build_number: true
22+
23+
#---------------------------------#
24+
# General #
25+
#---------------------------------#
26+
skip_branch_with_pr: true
27+
1028
#---------------------------------#
1129
# Branches to build #
1230
#---------------------------------#
@@ -15,12 +33,18 @@ branches:
1533
only:
1634
- develop
1735
- master
18-
- /release/.*/
19-
- /hotfix/.*/
36+
- /release\/.*/
37+
- /hotfix\/.*/
2038

2139
#---------------------------------#
2240
# Build Cache #
2341
#---------------------------------#
2442
cache:
25-
- src\packages -> src\**\packages.config
26-
- tools -> recipe.cake
43+
- tools -> recipe.cake, tools/packages.config
44+
45+
#---------------------------------#
46+
# Skip builds for doc changes #
47+
#---------------------------------#
48+
skip_commits:
49+
# Regex for matching commit message
50+
message: /\(doc\).*/

0 commit comments

Comments
 (0)