-
Notifications
You must be signed in to change notification settings - Fork 12
/
appveyor.yml
49 lines (41 loc) · 1.36 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
# Unfortunately, the AppVeyor compiler versiin is not
# fresh enough to compule named_types
environment:
matrix:
- config: Debug
- config: RelWithDebInfo
shallow_clone: true
# Operating system (build VM template)
os: Visual Studio 2015
# scripts that are called at very beginning, before repo cloning
init:
# clone directory
clone_folder: c:\projects\named_types
platform: x64
install:
- set
#- echo cmake on AppVeyor
#- cmake -version
#- call "C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\vcvarsall.bat" amd64
build_script:
#- cd c:\projects\named_types
#- mkdir build
#- cd build
- echo %config%
# This will produce lots of LNK4099 warnings which can be ignored.
# Unfortunately they can't be disabled, see
# http://stackoverflow.com/questions/661606/visual-c-how-to-disable-specific-linker-warnings
#- cmake -LA -G "Visual Studio 14 Win64"
#-DCMAKE_BUILD_TYPE=%config%
#..
#- msbuild named_types.sln /p:Configuration=%config% /toolsversion:14.0 /p:Platform=x64 /p:PlatformToolset=v140
#- cmake .. -LA -G "NMake Makefiles"
#-DCMAKE_BUILD_TYPE=%config%
#- nmake
test_script:
- echo "Project not supported on Appveyor"
# "-E testdata-overview" exempts one test we know fails on Appveyor
# because we currently don't have spatialite support.
#- ctest --output-on-failure
#-C %config%
#-E testdata-overview