Skip to content

Commit

Permalink
(GH-30) Add standard AppVeyor config file
Browse files Browse the repository at this point in the history
  • Loading branch information
gep13 committed Aug 23, 2019
1 parent 9159048 commit 7e4e34b
Show file tree
Hide file tree
Showing 2 changed files with 50 additions and 26 deletions.
50 changes: 50 additions & 0 deletions .appveyor.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
#---------------------------------#
# Build Image #
#---------------------------------#
image: Visual Studio 2017

#---------------------------------#
# Build Script #
#---------------------------------#
build_script:
- ps: .\build.ps1 -Target AppVeyor

#---------------------------------#
# Tests
#---------------------------------#
test: off

#---------------------------------#
# Pull Requests #
#---------------------------------#
pull_requests:
do_not_increment_build_number: true

#---------------------------------#
# General #
#---------------------------------#
skip_branch_with_pr: true

#---------------------------------#
# Branches to build #
#---------------------------------#
branches:
# Whitelist
only:
- develop
- master
- /release/.*/
- /hotfix/.*/

#---------------------------------#
# Build Cache #
#---------------------------------#
cache:
- tools -> recipe.cake, tools/packages.config

#---------------------------------#
# Skip builds for doc changes #
#---------------------------------#
skip_commits:
# Regex for matching commit message
message: /\(doc\).*/
26 changes: 0 additions & 26 deletions appveyor.yml

This file was deleted.

0 comments on commit 7e4e34b

Please sign in to comment.