-
Notifications
You must be signed in to change notification settings - Fork 62
/
appveyor.yml
46 lines (46 loc) · 2 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
version: 8.0-Beta-{branch}-{build}
skip_tags: true
os: Visual Studio 2017
configuration: Release
platform: Win32
before_build:
- appveyor DownloadFile http://cirno.lunar-tokyo.net/PA-Items-%APPVEYOR_REPO_BRANCH%.zip
- 7z x PA-Items-%APPVEYOR_REPO_BRANCH%.zip
- del PA-Items-%APPVEYOR_REPO_BRANCH%.zip
build:
verbosity: normal
after_build:
- 7z a NASSP-V%APPVEYOR_BUILD_VERSION%.zip %APPVEYOR_BUILD_FOLDER%\Config\
- 7z a NASSP-V%APPVEYOR_BUILD_VERSION%.zip %APPVEYOR_BUILD_FOLDER%\Doc\
- 7z a NASSP-V%APPVEYOR_BUILD_VERSION%.zip %APPVEYOR_BUILD_FOLDER%\Html\
- 7z a NASSP-V%APPVEYOR_BUILD_VERSION%.zip %APPVEYOR_BUILD_FOLDER%\Meshes\
- 7z a NASSP-V%APPVEYOR_BUILD_VERSION%.zip %APPVEYOR_BUILD_FOLDER%\Missions\
- 7z a NASSP-V%APPVEYOR_BUILD_VERSION%.zip %APPVEYOR_BUILD_FOLDER%\Modules\
- 7z a NASSP-V%APPVEYOR_BUILD_VERSION%.zip %APPVEYOR_BUILD_FOLDER%\Scenarios\
- 7z a NASSP-V%APPVEYOR_BUILD_VERSION%.zip %APPVEYOR_BUILD_FOLDER%\Script\
- 7z a NASSP-V%APPVEYOR_BUILD_VERSION%.zip %APPVEYOR_BUILD_FOLDER%\Sound\ -xr!OrbiterSound_SDK
- 7z a NASSP-V%APPVEYOR_BUILD_VERSION%.zip %APPVEYOR_BUILD_FOLDER%\Textures\
- 7z a NASSP-V%APPVEYOR_BUILD_VERSION%.zip %APPVEYOR_BUILD_FOLDER%\NASSP-LICENSE.txt
- 7z a NASSP-V%APPVEYOR_BUILD_VERSION%.zip %APPVEYOR_BUILD_FOLDER%\README.md
- 7z a NASSP-XRSound-Config-V%APPVEYOR_BUILD_VERSION%.zip %APPVEYOR_BUILD_FOLDER%\XRSound\
artifacts:
- path: NASSP-V$(appveyor_build_version).zip
name: NASSP
- path: NASSP-XRSound-Config-V$(appveyor_build_version).zip
name: NASSP-XRSound-Config
deploy:
- provider: GitHub
tag: NASSP-V$(appveyor_build_version)
description: V8.0 Beta Release
auth_token:
secure: IQ7NMbd0zOFrOgF1Kmp2i5/6C/bTng4X83G4tu9YAoYViKEvjWTPcn7r/0kKJ7M2
artifact: NASSP,NASSP-XRSound-Config
prerelease: true
notifications:
- provider: Webhook
url: http://cirno.lunar-tokyo.net/NASSP/web-hook.php
headers:
Authorization:
secure: dbYgsSP4RjFtMPSa95EaBA==
on_build_success: true
on_build_failure: true