forked from crazyants/Wexflow
-
Notifications
You must be signed in to change notification settings - Fork 0
/
appveyor.yml
45 lines (34 loc) · 1.19 KB
/
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
#---------------------------------#
# environment configuration #
#---------------------------------#
# Build worker image (VM template)
#image: Visual Studio 2017
# scripts that are called at very beginning, before repo cloning
init:
- git config --global core.autocrlf input
# clone directory
clone_folder: c:\projects\wexflow
#---------------------------------#
# build configuration #
#---------------------------------#
# build platform, i.e. x86, x64, Any CPU. This setting is optional.
platform: Any CPU
# to add several platforms to build matrix:
#platform:
# - x86
# - Any CPU
# build Configuration, i.e. Debug, Release, etc.
configuration: Release
# to add several configurations to build matrix:
#configuration:
# - Debug
# - Release
build:
parallel: true # enable MSBuild parallel builds
project: Wexflow.vs2010.sln # path to Visual Studio solution or project
verbosity: normal # MSBuild verbosity level quiet|minimal|normal|detailed
test: off
# scripts to run before build
#after_build:
# - ps: Copy-Item c:\projects\wexflow\samples\Wexflow c:\ -recurse
# - ps: Copy-Item c:\projects\wexflow\samples\WexflowTesting c:\ -recurse