forked from haiot4105/path-planning-project
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.appveyor.yml
36 lines (31 loc) · 783 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
image:
- Visual Studio 2015
version: "{build}"
clone_depth: 1
# scripts that are called at very beginning, before repo cloning
init:
- git config --global core.longpaths true
- git config --global core.autocrlf input
branches:
only:
- master
install:
- cmd: SET PATH=C:\mingw-w64\x86_64-7.2.0-posix-seh-rt_v5-rev1\mingw64\bin\;%PATH%
- rename "C:\Program Files\Git\usr\bin\sh.exe" "sh-ignored.exe"
environment:
matrix:
- BUILD_TYPE: Release
COMPILER: MinGW-w64
PLATFORM: x64
- BUILD_TYPE: Debug
COMPILER: MinGW-w64
PLATFORM: x64
build_script:
- cd Build
- cd %BUILD_TYPE%
- set PATH
- cmake -G "MinGW Makefiles" -DCMAKE_BUILD_TYPE=%BUILD_TYPE% ../../
- mingw32-make
- mingw32-make install
test_script:
- ctest --output-on-failure