forked from aisouard/libwebrtc
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathappveyor.yml
39 lines (30 loc) · 812 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
39
os: Visual Studio 2015
matrix:
fast_finish: true
platform:
- x86
- x64
configuration:
- Debug
- Release
clone_folder: c:\projects\libwebrtc
before_build:
- cd c:\projects\libwebrtc
- if "%platform%"=="x86" set CMAKE_GENERATOR_NAME=Visual Studio 14 2015
- if "%platform%"=="x64" set CMAKE_GENERATOR_NAME=Visual Studio 14 2015 Win64
- cmake -G "%CMAKE_GENERATOR_NAME%" -DBUILD_SAMPLE=1 -DCMAKE_BUILD_TYPE=%configuration% -DCMAKE_INSTALL_PREFIX=c:\projects\libwebrtc .
build:
project: PACKAGE.vcxproj
artifacts:
- path: libwebrtc-*.zip
name: Releases
deploy:
provider: GitHub
auth_token:
secure: QQrYk1F7DLgQ9eht+J6hvDiDRu8a+AKKwsOetybrL8B32UYxlNJKSZIpD0yHPVsx
artifact: /libwebrtc-.*\.zip/
draft: false
prerelease: false
on:
appveyor_repo_tag: true
test: off