forked from topfreegames/libpitaya
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.appveyor.yml
45 lines (32 loc) · 906 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
40
41
42
43
44
image: Visual Studio 2017
clone_folder: '%USERPROFILE%\go\src\github.com\topfreegames\libpitaya'
environment:
nodejs_version: "Current"
build:
verbosity: detailed
configuration: Release
platform: x64
artifacts:
- path: 'build\Release\*.dll'
name: Dlls
- path: 'build\Release\*.lib'
name: Libs
install:
- call "C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\VC\Auxiliary\Build\vcvars64.bat"
before_build:
- cd %USERPROFILE%\go\src\github.com\topfreegames\libpitaya
- cmake -H. -Bbuild -G "Visual Studio 15 2017 Win64" -DBUILD_SHARED_LIBS=ON
- cd build
build_script:
- cmake --build . --config Release
after_build:
- dir Release
deploy:
description: 'Release'
provider: GitHub
draft: true
auth_token:
secure: "zZylescCEij0QU44MySw8xIQgBjmRJfD/p/42ddQQoxLoFzC4TP+kkZm3ywsrKo6"
artifact: /.*\.dll|.*\.lib/
on:
appveyor_repo_tag: true