forked from ubdirdoc/segment-editor
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathappveyor.yml
34 lines (28 loc) · 847 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
environment:
QTDIR: C:/Qt/5.12/msvc2017_64
BOOST_ROOT: c:/Libraries/boost_1_69_0
configuration: Release
image: Visual Studio 2017
platform: x64
install:
- pip install sphinx quark-sphinx-theme
build_script:
- git submodule update --init --recursive
- mkdir build
- cd build
- cmake -T host=x64 -A x64 -DSEGMENT_RELEASE=1 -DCMAKE_PREFIX_PATH="%QTDIR%/lib/cmake/Qt5" -DBOOST_ROOT="%BOOST_ROOT%" ..
- cmake --build . --config Release --target Package
- rename SEGMent-*.zip SEGMent-%APPVEYOR_REPO_TAG_NAME%-win64.zip
artifacts:
- name: Installer
path: 'build/SEGMent-*.zip'
deploy:
release: $(APPVEYOR_REPO_TAG_NAME)
provider: GitHub
artifact: /.*\.zip/
auth_token:
secure: L6H/oYlUaRA+IAUwVeggtyG4T/mhzhx/yqnPwehUGXclLsvXRDiwaEIjXY9gmIvb
draft: false
prerelease: false
on:
appveyor_repo_tag: true