forked from NtQuery/Scylla
-
Notifications
You must be signed in to change notification settings - Fork 1
/
appveyor.yml
41 lines (32 loc) · 868 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
# branches to build
branches:
# whitelist
only:
- master
- cmake
# Operating system (build VM template)
os:
- Visual Studio 2015
- Visual Studio 2013
configuration:
- Release
- Debug
# cmake generator name
environment:
matrix:
- CMAKE_GEN_PLATFORM: ""
- CMAKE_GEN_PLATFORM: "x64"
build:
project: C:/projects/scylla/tmp/Scylla.vcxproj # path to Visual Studio solution or project
before_build:
- rmdir /S /Q tinyxml
- git clone https://github.com/rjpcomputing/ticpp tinyxml
- rmdir /S /Q WTL
- git clone https://github.com/lucasg/WindowsTemplateLibrary WTL
- mkdir tmp
- cd tmp
- cmake -A "%CMAKE_GEN_PLATFORM%" ..
test_script:
- cmake --build . --config %CONFIGURATION%
- ps: Get-ChildItem -Path $($env:CONFIGURATION) -Recurse | Write-Host
- ctest . -V -C %CONFIGURATION%