Permalink
Cannot retrieve contributors at this time
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
glabels-qt/.appveyor.yml
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
58 lines (47 sloc)
1.33 KB
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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 |