-
Notifications
You must be signed in to change notification settings - Fork 11
/
.appveyor.yml
50 lines (42 loc) · 1.29 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
version: "{build}"
branches:
except:
- /^travis.*$/
clone_depth: 10
environment:
matrix:
# - GENERATOR: "Visual Studio 14 2015"
# CONFIGURATION: Release
# TOOLSET: v140_xp
# APPVEYOR_BUILD_WORKER_IMAGE: "Visual Studio 2015"
- GENERATOR: "Visual Studio 15 2017"
CONFIGURATION: Release
TOOLSET: v141_xp
APPVEYOR_BUILD_WORKER_IMAGE: "Visual Studio 2017"
- GENERATOR: "Visual Studio 15 2017"
CONFIGURATION: Debug
TOOLSET: v141
APPVEYOR_BUILD_WORKER_IMAGE: "Visual Studio 2017"
- GENERATOR: "Visual Studio 15 2017 Win64"
CONFIGURATION: Release
TOOLSET: v141
APPVEYOR_BUILD_WORKER_IMAGE: "Visual Studio 2017"
build_script:
# - appveyor DownloadFile http://tdgmods.net/VSLibs.7z
# - appveyor DownloadFile http://tdgmods.net/vsLibsx64.7z
# - 7z x VSLibs.7z
# - 7z x vsLibsx64.7z
- md build
- cd build
- cmake -G "%GENERATOR%" -T "%TOOLSET%" -DPK3_QUIET_ZIPDIR=YES ..
- cmake --build . --config "%CONFIGURATION%" -- /verbosity:minimal
after_build:
- set OUTPUT_DIR=%APPVEYOR_BUILD_FOLDER%\build\%CONFIGURATION%\
- 7z a ..\3dge.zip "%OUTPUT_DIR%Edge.exe"
artifacts:
- path: 3dge.zip
notifications:
- provider: Email
on_build_success: false
on_build_failure: false
on_build_status_changed: false