forked from Zorkator/libfde
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.appveyor.yml
54 lines (41 loc) · 893 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
47
48
49
50
51
52
image:
- Ubuntu
- Visual Studio 2015
- macOS
for:
-
matrix:
only:
- image: Ubuntu
install:
- mkdir _build
- cd _build
- cmake .. -DCMAKE_BUILD_TYPE=Debug -DBUILD_TESTING=1
- cmake --build .
test_script:
- ctest --output-on-failure .
-
matrix:
only:
- image: Visual Studio 2015
install:
- set PATH=C:\mingw-w64\x86_64-7.3.0-posix-seh-rt_v5-rev0\mingw64\bin;C:\Program Files (x86)\CMake\bin
- mkdir _build
- cd _build
- cmake .. -G "MinGW Makefiles" -DCMAKE_BUILD_TYPE=Debug -DBUILD_TESTING=1
- cmake --build .
test_script:
- ctest --output-on-failure .
-
matrix:
only:
- image: macOS
install:
- brew install gcc
- mkdir _build
- cd _build
- cmake .. -DCMAKE_BUILD_TYPE=Debug -DBUILD_TESTING=1
- cmake --build .
test_script:
- ctest --output-on-failure .
build: off