forked from JACoders/OpenJK
-
Notifications
You must be signed in to change notification settings - Fork 7
/
appveyor.yml
66 lines (52 loc) · 1.54 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
version: 1.0.{build}
branches:
except:
- release/1.0
clone_depth: 1
shallow_clone: true
#do not build on tags
skip_tags: true
os: Visual Studio 2013
environment:
VisualStudioVersion: "12.0"
CMAKE_GENERATOR: "Visual Studio 12 2013"
matrix:
fast_finish: false #finish build once one of the jobs fails
platform:
- Win32
- x64
configuration:
- Debug
- Release
init:
- ps: $env:SHORT_COMMIT_HASH=$env:appveyor_repo_commit.substring(0,8)
- ps: Update-AppveyorBuild -Version "1.0-git-$env:SHORT_COMMIT_HASH"
- ps: $env:ARTIFACT_FILE="mbii-$(Get-Date -UFormat "%Y-%m-%d")-$env:SHORT_COMMIT_HASH-windows.zip"
- echo "Artifact file='%ARTIFACT_FILE%'"
- cmake --version
- msbuild /version
clone_folder: C:\projects\OpenJK
#scripts to run before build
before_build:
- cd %APPVEYOR_BUILD_FOLDER%
- if "%Platform%"=="x64" set "CMAKE_GENERATOR=%CMAKE_GENERATOR% Win64"
- echo "Generator='%CMAKE_GENERATOR%'"
- echo "Platform='%Platform%'"
- if exist build rmdir /q /s build #remove build dir
- mkdir build
- cd build
- cmake -DCMAKE_INSTALL_PREFIX=install -G "%CMAKE_GENERATOR%" "%APPVEYOR_BUILD_FOLDER%"
- ls
build:
parallel: true
project: C:\projects\OpenJK\build\OpenJK.sln
verbosity: normal
after_build:
- cmake --build . --target INSTALL --config %CONFIGURATION%
- cd %APPVEYOR_BUILD_FOLDER%
- 7z a %ARTIFACT_FILE% %APPVEYOR_BUILD_FOLDER%/build/install/JediAcademy/*
- 7z l %ARTIFACT_FILE% # list files in the zip file
artifacts:
- path: mbii-*-windows.zip
name: OpenJK MBII Jedi Academy ZIP
type: zip