forked from freeorion/freeorion
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathappveyor.yml
27 lines (20 loc) · 859 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
os: Visual Studio 2015
version: ci-{build}
init:
- git config --global core.eol native
- git config --global core.autocrlf true
clone_depth: 50
install:
# Remove the VS Xamarin targets to reduce AppVeyor specific noise in build
# logs. See also http://help.appveyor.com/discussions/problems/4569
- del "C:\Program Files (x86)\MSBuild\14.0\Microsoft.Common.targets\ImportAfter\Xamarin.Common.targets"
- cd ..
- ps: Start-FileDownload https://github.com/freeorion/freeorion-sdk/releases/download/v7/FreeOrionSDK_7_MSVC-v140-xp.zip -FileName FreeOrionSDK.zip
- unzip -q FreeOrionSDK.zip
- cp bin/* freeorion/
- cd freeorion
before_build:
- cd msvc2015
build_script:
- msbuild FreeOrion.sln /property:Configuration=Release-XP /logger:"C:\Program Files\AppVeyor\BuildAgent\Appveyor.MSBuildLogger.dll" /verbosity:minimal
test: off