-
Notifications
You must be signed in to change notification settings - Fork 90
/
.appveyor.yml
58 lines (47 loc) · 1.33 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
# Build glabels windows installer.
#
# Currently, only builds snapshots and is triggered by the travis CI build.
version: 3.99.0.{build}
branches:
# blacklist
except:
- /.*/
# whitelist
only:
- master
skip_non_tags: true
image: Visual Studio 2017
init:
- git config --global core.autocrlf true
install:
# Locate Qt installation
- set QTDIR=c:\Qt\5.11\msvc2017_64
- set PATH=%PATH%;%QTDIR%\bin
# Zlib and QREncode
- vcpkg install zlib:x64-windows
- vcpkg install libqrencode:x64-windows
- vcpkg integrate install
build_script:
- git checkout master # re-attach to master to satisfy auto version tooling
- mkdir build
- cd build
- cmake -G "Visual Studio 15 2017 Win64" .. -DCMAKE_PREFIX_PATH=%QTDIR% -DCMAKE_TOOLCHAIN_FILE=C:/Tools/vcpkg/scripts/buildsystems/vcpkg.cmake
- cmake --build . --config Release
- ctest -C Release
- cpack -C Release -G NSIS64
- set /P VERSION=<VERSION
- move glabels-3.99.0-win64.exe glabels-%VERSION%-win64.exe
artifacts:
- path: build\glabels-%VERSION%-win64.exe
name: windows-installer
deploy:
- provider: GitHub
release: glabels-%VERSION%
artifact: windows-installer
auth_token:
secure: mPNNgwWP58gu4eA2wVwGkGWNTzJigKj1g/XjsZ9vk03rLMmf5fxC/XNr15fPBCi8
draft: false
prerelease: true
force_update: true
on:
branch: master