-
Notifications
You must be signed in to change notification settings - Fork 0
/
appveyor.yml
74 lines (59 loc) · 1.98 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
73
74
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="openjk-$(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: openjk-*-windows.zip
name: OpenJK Jedi Academy ZIP
type: zip
deploy_script:
- ps: $key = $env:DeploymentKey
- ps: $fileContent = "-----BEGIN RSA PRIVATE KEY-----" + "`n"
- ps: for ($i = 0; $i -lt $key.Length / 64; $i++) { $min = [math]::min(64, $key.Length - ($i * 64)); $fileContent += $key.substring($i*64, $min) + "`n"; }
- ps: $fileContent += "-----END RSA PRIVATE KEY-----" + "`n"
- ps: Set-Content C:\users\appveyor\.ssh\id_rsa $fileContent
- scripts/appveyor/deploy.bat %ARTIFACT_FILE%