-
Notifications
You must be signed in to change notification settings - Fork 18
/
appveyor.yml
54 lines (46 loc) · 1.22 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
#---------------------------------#
# general configuration #
#---------------------------------#
# version format
version: 0.6.4.{build}
# branches to build
#branches:
# whitelist
# only:
# - master
# - production
# Build worker image (VM template)
image: Visual Studio 2017
# build cache to preserve files/folders between builds
cache: c:\tools\vcpkg\installed\
# scripts that run after cloning repository
install:
- cd C:\Tools\vcpkg
- git pull
- .\bootstrap-vcpkg.bat
- cd %APPVEYOR_BUILD_FOLDER%
- vcpkg install libssh:x64-windows
- echo This is batch
- set QTDIR=C:\Qt\5.13.2\msvc2017_64
- set PATH=%QTDIR%\bin;%PATH%
# to run your custom scripts instead of automatic MSBuild
build_script:
- autogen_and_build.bat
#---------------------------------#
# artifacts configuration #
#---------------------------------#
artifacts:
# pushing entire folder as a zip archive
- name: qjournalctl-windows_0.6.4-1
path: release
deploy:
release: v0.6.4
provider: 'GitHub'
force_update: true
auth_token:
secure: ja9G79s4vQR2K9YSZ9t8KKJaftNBJImJVOoVhuYKC+bhNV+X8WR45T7I+6StQVfE
artifact: qjournalctl-windows_0.6.4-1
draft: false
prerelease: false
on:
APPVEYOR_REPO_TAG: true