forked from JACoders/OpenJK
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathappveyor.yml
72 lines (58 loc) · 1.96 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
version: 1.0.{build}
branches:
except:
- release/1.0
clone_depth: 1 #clone entire repository history if not defined
shallow_clone: true #GitHub specific (ignores clone_depth)
#do not build on tags
skip_tags: true
os: Visual Studio 2015 # Windows Server 2012
environment:
VisualStudioVersion: "14.0"
CMAKE_GENERATOR: "Visual Studio 14 2015"
matrix:
- CMAKE_BUILD_TYPE: "Debug"
- CMAKE_BUILD_TYPE: "Release"
matrix:
fast_finish: false #finish build once one of the jobs fails
platform:
- Win32
- x64
configuration:
#- Debug
- Release
#scripts that are called at very beginning, before repo cloning
init:
- ps: Update-AppveyorBuild -Version "1.0-git-$($env:appveyor_repo_commit.substring(0,8))"
- cmake --version
- msbuild /version
#- cmake --help #debug: view available generators
- python --version #for tests, todo (try starting the built executables)
#scripts that run after cloning repository
install:
#Add cl.exe in path (for nmake)
#'"C:\Program Files\Microsoft SDKs\Windows\v7.1\Bin\SetEnv.cmd" /x64'
#where to clone the git repository to
clone_folder: C:\projects\OpenJK
#scripts to run before build
before_build:
- cmd: cd %APPVEYOR_BUILD_FOLDER%
#- set #debug: view all environment variables
- cmd: if "%Platform%"=="x64" set "CMAKE_GENERATOR=%CMAKE_GENERATOR% Win64"
- cmd: echo "Generator='%CMAKE_GENERATOR%', CMAKE_BUILD_TYPE='%CMAKE_BUILD_TYPE%'"
- cmd: echo "Platform='%Platform%'"
- cmd: if exist build rmdir /q /s build #remove build dir
- mkdir build
- cmd: cd build
- cmd: cmake -G "%CMAKE_GENERATOR%" "-DCMAKE_BUILD_TYPE=%CMAKE_BUILD_TYPE%" "%APPVEYOR_BUILD_FOLDER%"
- cmd: ls
#- mkdir ..\nmakebuild
#- cd ..\nmakebuild
#- cmd: cmake -G "NMake Makefiles" "-DCMAKE_BUILD_TYPE=%CMAKE_BUILD_TYPE%" "%APPVEYOR_BUILD_FOLDER%"
#- cmd: ls
build:
parallel: true
project: C:\projects\OpenJK\build\OpenJK.sln
verbosity: minimal #quiet|minimal|normal|detailed
#scripts to run after build
after_build: