forked from freeorion/freeorion
-
Notifications
You must be signed in to change notification settings - Fork 0
/
appveyor.yml
32 lines (24 loc) · 860 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
os: Visual Studio 2017
version: ci-{build}
init:
- git config --global core.eol native
- git config --global core.autocrlf true
clone_depth: 50
skip_commits:
files:
- default/
- '**/*.md'
- '**/*.xml'
- '**/COPYING'
message: /.*\[(skip appveyor)|(appveyor skip)\].*/
install:
- cd ..
- ps: Start-FileDownload https://github.com/freeorion/freeorion-sdk/releases/download/v10/FreeOrionSDK_10_MSVC-v140-xp.zip -FileName FreeOrionSDK.zip
- unzip -q FreeOrionSDK.zip
- cp bin/* freeorion/
- cd freeorion
before_build:
- cd msvc2017
build_script:
- msbuild FreeOrion.sln /maxcpucount /property:BuildInParallel=true /property:CL_MPCount=2 /property:PlatformToolset=v140_xp /property:Configuration=Release-XP /logger:"C:\Program Files\AppVeyor\BuildAgent\Appveyor.MSBuildLogger.dll" /verbosity:minimal
test: off