git-subtree-dir: third_party/libosmium git-subtree-split: ce865381fb752323ff1e66181f5a49b7f500ffa3
40 lines
1.1 KiB
YAML
40 lines
1.1 KiB
YAML
#-----------------------------------------------------------------------------
|
|
#
|
|
# Configuration for continuous integration service at appveyor.com
|
|
#
|
|
#-----------------------------------------------------------------------------
|
|
|
|
environment:
|
|
matrix:
|
|
- config: Dev
|
|
autocrlf: true
|
|
- config: Dev
|
|
autocrlf: false
|
|
- config: RelWithDebInfo
|
|
autocrlf: true
|
|
- config: RelWithDebInfo
|
|
autocrlf: false
|
|
|
|
shallow_clone: true
|
|
|
|
# Operating system (build VM template)
|
|
os: Visual Studio 2015
|
|
|
|
# scripts that are called at very beginning, before repo cloning
|
|
init:
|
|
- git config --global core.autocrlf %autocrlf%
|
|
- git config --get core.autocrlf
|
|
|
|
# clone directory
|
|
clone_folder: c:\projects\libosmium
|
|
|
|
platform: x64
|
|
|
|
build_script:
|
|
- build-appveyor.bat
|
|
|
|
# remove garbage VS messages
|
|
# http://help.appveyor.com/discussions/problems/4569-the-target-_convertpdbfiles-listed-in-a-beforetargets-attribute-at-c-does-not-exist-in-the-project-and-will-be-ignored
|
|
before_build:
|
|
- del "C:\Program Files (x86)\MSBuild\14.0\Microsoft.Common.targets\ImportAfter\Xamarin.Common.targets"
|