-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathappveyor.yml
46 lines (36 loc) · 822 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
# AppVeyor configuration file.
version: '0.2.1.{build}'
# Build worker image (VM template)
image: Visual Studio 2013
# scripts that are called at very beginning, before repo cloning
init:
- git config --global core.autocrlf input
# clone directory
clone_folder: c:\projects\mcrecover
# Don't build if source files aren't modified.
only_commits:
files:
- appveyor.cmd
- appveyor.yml
- '**/CMakeLists.txt'
- '**/*.cmd'
- '**/*.sh'
- extlib/**/*
- src/**/*
platform:
- x86
- x64
configuration:
- Debug
- Release
before_build:
- cd %APPVEYOR_BUILD_FOLDER%
- appveyor.cmd
build_script:
- cd %APPVEYOR_BUILD_FOLDER%
- msbuild ALL_BUILD.vcxproj
# No tests yet...
#test_script:
# - cd %APPVEYOR_BUILD_FOLDER%
# - ctest -V -C %CONFIGURATION%
# TODO: Automatic packaging?