-
Notifications
You must be signed in to change notification settings - Fork 2
/
appveyor.yml
92 lines (83 loc) · 2.59 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
version: 1.0.{build}
environment:
matrix:
- generator: "MinGW Makefiles"
boost_track: "master"
configuration: "Debug"
- generator: "MinGW Makefiles"
boost_track: "1.58.0"
configuration: "Debug"
- generator: "MinGW Makefiles"
boost_track: "1.57.0"
configuration: "Debug"
- generator: "MinGW Makefiles"
boost_track: "1.56.0"
configuration: "Debug"
- generator: "MinGW Makefiles"
boost_track: "1.55.0"
configuration: "Debug"
- generator: "Visual Studio 12"
boost_track: "master"
configuration: "Debug"
- generator: "Visual Studio 12"
boost_track: "1.58.0"
configuration: "Debug"
- generator: "Visual Studio 12"
boost_track: "1.57.0"
configuration: "Debug"
- generator: "Visual Studio 12"
boost_track: "1.56.0"
configuration: "Debug"
- generator: "Visual Studio 12"
boost_track: "1.55.0"
configuration: "Debug"
- generator: "MinGW Makefiles"
boost_track: "master"
configuration: "Release"
- generator: "MinGW Makefiles"
boost_track: "1.58.0"
configuration: "Release"
- generator: "MinGW Makefiles"
boost_track: "1.57.0"
configuration: "Release"
- generator: "MinGW Makefiles"
boost_track: "1.56.0"
configuration: "Release"
- generator: "MinGW Makefiles"
boost_track: "1.55.0"
configuration: "Release"
- generator: "Visual Studio 12"
boost_track: "master"
configuration: "Release"
- generator: "Visual Studio 12"
boost_track: "1.58.0"
configuration: "Release"
- generator: "Visual Studio 12"
boost_track: "1.57.0"
configuration: "Release"
- generator: "Visual Studio 12"
boost_track: "1.56.0"
configuration: "Release"
- generator: "Visual Studio 12"
boost_track: "1.55.0"
configuration: "Release"
configuration:
- Release
- Release
install:
- cinst biicode mingw
- cmd: set PATH=%PATH:CMake 2.8\bin=%;C:\ProgramData\chocolatey\lib\cmake.3.0.2\content\cmake-3.0.2-win32-x86\bin
- cmd: set PATH=%PATH:Git\bin=%;C:\MinGW\bin
- cmd: set PATH=%PATH%;C:\Program Files (x86)\BiiCode\bii;
- cmd: cmake --version
- cmd: g++ --version
- cmd: bii --version
build_script:
- cmd: bii init -l
- cmd: C:\MinGW\msys\1.0\bin\sh bootstrap.sh "%boost_track%"
- cmd: C:\MinGW\msys\1.0\bin\sh generate "%boost_track%" --no-publish --ci-build
- cmd: bii cpp:configure -G "%generator%" -DCMAKE_BUILD_TYPE="%configuration%"
- cmd: bii cpp:build
test_script:
- cmd: cd bin
- cmd: for %%i in (*.exe) do start "" /b "%%i"