forked from GameProgressive/UniSpySDK
-
Notifications
You must be signed in to change notification settings - Fork 1
/
appveyor.yml
59 lines (48 loc) · 1.52 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
# Specify version format
version: "{build}"
platform:
- Win32
- x64
configuration:
- Debug
- Release
# specify custom environment variables
environment:
MSVC_DEFAULT_OPTIONS: ON
matrix:
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017
GENERATOR: Visual Studio 14 2015
VISUAL_STUDIO_INTERNAL_VERSION: 140
VISUAL_STUDIO_VERSION: 14.0
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017
GENERATOR: Visual Studio 15 2017
VISUAL_STUDIO_INTERNAL_VERSION: 141
VISUAL_STUDIO_VERSION: 14.1
# scripts that are called at very beginning, before repo cloning
init:
- cmd: cmake --version
- cmd: msbuild /version
- git config --global core.autocrlf input
# clone directory
clone_folder: C:\projects\RetroSpy
skip_commits:
files:
- doc/*
# Maximum number of concurrent jobs for the project
max_jobs: 1
# scripts that run after cloning repository
install:
- cmd: cd C:\projects\RetroSpy
- cmd: git submodule update --init --recursive
# scripts to run before build
before_build:
- cmd: cd C:\projects\RetroSpy
- cmd: md build
- cmd: cd build
- cmd: if %PLATFORM% == Win32 cmake -G "%GENERATOR%" -DCMAKE_BUILD_TYPE=%configuration% ..
- cmd: if %PLATFORM% == x64 cmake -G "%GENERATOR% Win64" -DCMAKE_BUILD_TYPE=%configuration% ..
build:
project: C:\projects\RetroSpy\build\retrospy.sln
parallel: true # enable MSBuild parallel builds
verbosity: minimal # MSBuild verbosity level (quiet|minimal|normal|detailed)
test: off