-
Notifications
You must be signed in to change notification settings - Fork 1
/
appveyor.yml
57 lines (50 loc) · 1.51 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
version: '{build}'
configuration:
- Release
environment:
matrix:
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017
GENERATOR: Visual Studio 15 2017 Win64
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017
GENERATOR: Visual Studio 15 2017
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015
GENERATOR: Visual Studio 14 2015 Win64
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015
GENERATOR: Visual Studio 14 2015
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2013
GENERATOR: Visual Studio 12 2013 Win64
- APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2013
GENERATOR: Visual Studio 12 2013
install:
- choco install InnoSetup -y
- choco install nasm --x86 -y
- set PATH=C:\Program Files (x86)\NASM;%PATH%
before_build:
- cmake -H. -Bbuild -G"%GENERATOR%"
build_script:
- cmake --build build --config Release --target installer
artifacts:
- path: LuaVM*.exe
deploy:
- provider: GitHub
description: Release of v$(APPVEYOR_REPO_TAG_NAME)
auth_token:
secure: 59S6QwHMgG9sXcr64kPOGB3ZZPJXwnID6XyPBB6zv2ncjNg3Mr6KElDBV+QXzVDP
artifact: /LuaVM.+\.exe/
draft: false
prerelease: true
on:
appveyor_repo_tag: true
- provider: BinTray
username: xpol
api_key:
secure: b+4yTLIkX5eZxGWyK4gW6atxDSje5+wFa7PwOoMB162Ulvo3TndrmTH2jYGUwzqA
subject: xpol
repo: luavm
package: luavm-development
version: v$(APPVEYOR_REPO_TAG_NAME)
publish: true
override: true
explode: true
on:
appveyor_repo_tag: true