forked from qtproject/qt-apps-qmllive
-
Notifications
You must be signed in to change notification settings - Fork 0
/
appveyor.yml
64 lines (55 loc) · 1.42 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
# AppVeyor build configuration
# http://www.appveyor.com/docs/build-configuration
version: build{build}
platform:
- Win64
environment:
matrix:
- QTDIR: C:\Qt\5.8\msvc2015_64
VSVER: 14.0
ARCH: x64
configuration:
- release
install:
- '%QTDIR%\bin\qtenv2.bat'
- '"C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\vcvarsall.bat" %ARCH%'
- qmake -v
build_script:
- CALL %APPVEYOR_BUILD_FOLDER%/build/appveyor/appveyor.bat
artifacts:
- path: 'build.release\QmlLiveBench*x64.zip'
name: QmlLiveBench-x64-archive
deploy:
- provider: BinTray
username: machinekoder
api_key:
secure: W+r/AcwTE6+ZntNkPg4ulGEWL9A51GF0UkCqT7OqS1OSLZZHrn9MUQdoODQulAaZ
subject: machinekoder
repo: QmlLiveBench-Development
package: QmlLiveBench_Development-Windows-master-x64
publish: true
override: true
explode: false
artifact: QmlLiveBench-x64-archive
version: $(appveyor_build_version)
on:
branch: master
appveyor_repo_tag: false
- provider: BinTray
username: machinekoder
api_key:
secure: W+r/AcwTE6+ZntNkPg4ulGEWL9A51GF0UkCqT7OqS1OSLZZHrn9MUQdoODQulAaZ
subject: machinekoder
repo: QmlLiveBench
package: QmlLiveBench-Windows-x64
publish: true
override: true
explode: false
artifact: QmlLiveBench-x64-archive
version: $(appveyor_build_version)
on:
appveyor_repo_tag: true
notifications:
on_build_success: false
on_build_failure: false
on_build_status_changed: false