-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy path.appveyor.yml
98 lines (73 loc) · 2.34 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
#...............................................................................
#
# This file is part of the Jancy toolkit.
#
# Jancy is distributed under the MIT license.
# For details see accompanying license.txt file,
# the public copy of which is also available at:
# http://tibbo.com/downloads/archive/jancy/license.txt
#
#...............................................................................
image:
- Visual Studio 2015
- Visual Studio 2017
init:
- git config --global core.autocrlf input
clone_folder: c:\projects\jancy
shallow_clone: true
platform:
- x64
- x86
configuration:
- Debug
- Release
environment:
matrix:
- LLVM_VERSION: 3.4.2
TOOLCHAIN: msvc10
- LLVM_VERSION: 3.4.2
TOOLCHAIN: msvc15
- LLVM_VERSION: 3.9.1
TOOLCHAIN: msvc12
- LLVM_VERSION: 7.1.0
TOOLCHAIN: msvc15
- LLVM_VERSION: 8.0.0
TOOLCHAIN: msvc15
matrix:
fast_finish: false
exclude:
- image: Visual Studio 2015
TOOLCHAIN: msvc15
- image: Visual Studio 2017
TOOLCHAIN: msvc10
- image: Visual Studio 2017
TOOLCHAIN: msvc12
- image: Visual Studio 2017
TOOLCHAIN: msvc14
install:
- call ci\appveyor\set-env.bat %TOOLCHAIN% %PLATFORM%
- call ci\appveyor\install.bat
- git clone --depth 1 https://github.com/vovkos/axl
- git clone --depth 1 https://github.com/vovkos/graco
build_script:
- set THIS_DIR=%CD%
- set THIS_DIR_CMAKE=%THIS_DIR:\=/%
- mkdir axl\build
- cd axl\build
- cmake .. %CMAKE_CONFIGURE_FLAGS%
- cmake --build . %CMAKE_BUILD_FLAGS%
- cd %THIS_DIR%
- echo set (AXL_CMAKE_DIR %THIS_DIR_CMAKE%/axl/cmake %THIS_DIR_CMAKE%/axl/build/cmake) >> paths.cmake
- mkdir graco\build
- cd graco\build
- cmake .. %CMAKE_CONFIGURE_FLAGS%
- cmake --build . %CMAKE_BUILD_FLAGS%
- cd %THIS_DIR%
- echo set (GRACO_CMAKE_DIR %THIS_DIR_CMAKE%/graco/cmake %THIS_DIR_CMAKE%/graco/build/cmake) >> paths.cmake
- mkdir build
- cd build
- cmake .. %CMAKE_CONFIGURE_FLAGS%
- cmake --build . %CMAKE_BUILD_FLAGS%
- ps: Add-AppveyorMessage "APPVEYOR_REPO_COMMIT=$env:APPVEYOR_REPO_COMMIT"
test_script:
- ctest -C %CONFIGURATION% --output-on-failure