-
Notifications
You must be signed in to change notification settings - Fork 12
/
appveyor.yml
96 lines (88 loc) · 2.1 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
version: build-{build}
branches:
only:
- master
skip_tags: true
clone_depth: 1
clone_folder: C:\_Repos\LunaLUA
install:
- cmd: git submodule init
- cmd: git submodule update
environment:
matrix:
- CONFIG: Release
TOBUILD: LunaLua
APPVEYOR_BUILD_WORKER_IMAGE: "Visual Studio 2015"
PLATFORMTOOLSET: "v140_xp"
- CONFIG: Release
TOBUILD: Launcher
APPVEYOR_BUILD_WORKER_IMAGE: "Visual Studio 2017"
PLATFORMTOOLSET: "v141"
build_script:
- if [%TOBUILD%]==[LunaLua] build.bat
- if [%TOBUILD%]==[LunaLua] build-lunaexec.bat
- if [%TOBUILD%]==[LunaLua] deploy-full.bat nopause
- if [%TOBUILD%]==[LunaLua] appveyor PushArtifact LunaLUA-bin.zip
- if [%TOBUILD%]==[LunaLua] appveyor PushArtifact LunaLoader-bin.zip
- if [%TOBUILD%]==[LunaLua] appveyor PushArtifact Release\LunaDLL.dll
- if [%TOBUILD%]==[LunaLua] appveyor PushArtifact Release\LunaDLL.pdb
- if [%TOBUILD%]==[LunaLua] appveyor PushArtifact LunaLoader-exec.7z
- if [%TOBUILD%]==[Launcher] build_launcher_2017.bat
- if [%TOBUILD%]==[Launcher] deploy-launcher.bat nopause
- if [%TOBUILD%]==[Launcher] appveyor PushArtifact SMBX-Launcher.zip
deploy:
- provider: Environment
name: WohlnetFTP
#
#-
# version: 0.7.3.1.{build}
# branches:
# only:
# - master
# skip_tags: true
#
# os: Visual Studio 2017
# configuration: Release
#
# clone_depth: 1
#
# clone_folder: C:\_Repos\LunaLUA
#
# install:
# - cmd: git submodule init
# - cmd: git submodule update
#
# build_script:
# - cmd: build_launcher_2017.bat
#
# after_build:
# - cmd: deploy-full.bat nopause
#
# artifacts:
# - path: SMBX-Launcher.zip
#
# deploy:
# - provider: Environment
# name: WohlnetFTP
#
#-
# version: 0.7.3.1.{build}
# branches:
# only:
# - cleanup
# skip_tags: true
#
# os: Visual Studio 2017
#
# clone_depth: 1
# clone_folder: C:\_Repos\LunaLUA
#
# install:
# - cmd: git submodule init
# - cmd: git submodule update
#
# build_script:
# - cmd: mkdir build-appveyor-vs2017
# - cmd: cd build-appveyor-vs2017
# - cmd: cmake ../. -G "Visual Studio 15 2017"
# - cmd: cmake --build . --config release