-
Notifications
You must be signed in to change notification settings - Fork 69
/
Copy path.appveyor.yml
49 lines (38 loc) · 1.13 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
46
47
48
49
# AppVeyor CI configuration:
# We don't do a shallow clone of just the source archive as we want to get
# the diff for source file checks.
# We do limit to the last few commits to speed things up:
clone_depth: 10
# Don't run on pushes to feature branches: pull requests cover those.
branches:
only:
- master
platform: x64
build:
parallel: true
environment:
matrix:
- GENERATOR: Visual Studio 12
CONFIG: Debug
MSVC_PLATFORM: x86
- GENERATOR: Visual Studio 12
CONFIG: RelWithDebInfo
MSVC_PLATFORM: x86
- GENERATOR: Visual Studio 12 Win64
CONFIG: Debug
MSVC_PLATFORM: x86_amd64
- GENERATOR: Visual Studio 12 Win64
CONFIG: RelWithDebInfo
MSVC_PLATFORM: x86_amd64
before_build:
- call "c:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\vcvarsall.bat" %MSVC_PLATFORM%
- cd c:\projects\drltrace
- git submodule update --init --recursive
- mkdir build
- cd build
build_script:
#parallel: true
- cmake "-G%GENERATOR%" -DCMAKE_BUILD_TYPE=%CONFIG% -DBUILD_TOOL_TESTS=ON ..\drltrace_src\
- cmake --build . --config "%CONFIG%"
test_script:
- ctest -VV