-
Notifications
You must be signed in to change notification settings - Fork 45
/
appveyor.yml
38 lines (30 loc) · 834 Bytes
/
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
os: Visual Studio 2015
matrix:
fast_finish: true
platform:
- x86
- x64
configuration:
- Release
before_build:
- git submodule update --init --recursive
- python get_steinberg_sdk.py
- choco upgrade cmake
- set path=C:\Program Files\CMake\bin;%path%
build_script:
- ps: .\build.ps1 -Verbose $env:PLATFORM $env:CONFIGURATION
after_build:
- ps: 7z a Win-Plugins-$env:PLATFORM-$env:APPVEYOR_BUILD_VERSION.zip .\CMakeBuild\$env:PLATFORM\*\Release\*.dll
artifacts:
- path: Win-Plugins-$(PLATFORM)-$(APPVEYOR_BUILD_VERSION).zip
name: Win-Plugins-$(PLATFORM)-$(APPVEYOR_BUILD_VERSION)
deploy:
- provider: BinTray
username: bdejong
api_key:
secure: aJrQELByJLr1WnPto6BeemIs6HjtTs3g/ewSFeYF1FZbsFfxAAgbpYTA0SSWMaX0
subject: bdejong
repo: Plugins
package: Windows
publish: true
override: true