forked from DanielSWolf/rhubarb-lip-sync
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.appveyor.yml
28 lines (28 loc) · 911 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
image: Visual Studio 2015
environment:
BOOST_ROOT: C:\Libraries\boost_1_66_0
# If the Gradle Daemon is used, AppVeyor waits forever for it to terminate
GRADLE_OPTS: -Dorg.gradle.daemon=false
init:
# Print Remote Desktop information for debugging porposes
- ps: iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/appveyor/ci/master/scripts/enable-rdp.ps1'))
build_script:
- mkdir build
- cd build
- cmake .. -G "Visual Studio 14 2015"
- cmake --build . --config Release --target package
- cd %APPVEYOR_BUILD_FOLDER%
test_script:
- build\rhubarb\Release\runTests.exe
artifacts:
- path: build\rhubarb-lip-sync-*.zip
deploy:
provider: GitHub
release: $(APPVEYOR_REPO_TAG_NAME)
description: ''
auth_token:
secure: Gk7y8Cb9ImDBthgL56W1QMWDEp4oIcbUeKgXnkiBsy7G+V6H59MPXv0ZC7Zht8+3
artifact: /.*\.zip/
draft: true
on:
appveyor_repo_tag: true