forked from hluk/CopyQ
-
Notifications
You must be signed in to change notification settings - Fork 0
/
appveyor.yml
60 lines (46 loc) · 1.28 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
---
configuration: Release
image:
- Visual Studio 2019
cache:
- usr
- downloads
# Build and test only once for a pull request.
skip_branch_with_pr: true
environment:
APPVEYOR_SAVE_CACHE_ON_ERROR: true
KF5_VERSION: 5.87
KF5_PATCH: 0
SNORETOAST_VERSION: 0.7.0
matrix:
- QTDIR: /c/Qt/5.15/msvc2019_64
CMAKE_GENERATOR: Visual Studio 16 2019
CMAKE_GENERATOR_ARCH: x64
BUILD_SUB_DIR: Release
# https://wiki.qt.io/Qt_5.15_Tools_and_Versions
# https://www.appveyor.com/docs/windows-images-software/#tools
OPENSSL_PATH: /c/OpenSSL-v111-Win64/bin
LIBSSL: libssl-1_1-x64.dll
LIBCRYPTO: libcrypto-1_1-x64.dll
WITH_NATIVE_NOTIFICATIONS: "ON"
# Parameters for default build commands (build_script is used instead).
build:
install:
- ps: $env:Path = "C:\Program Files\Git\bin;$env:Path"
- bash utils/appveyor/install.sh
before_build:
- bash utils/appveyor/before_build.sh
build_script:
- bash utils/appveyor/build_script.sh
after_build:
- bash utils/appveyor/after_build.sh
artifacts:
- path: 'copyq-*-setup.exe'
name: CopyQ Setup
# Upload test log files.
on_finish:
- ps: >-
Get-ChildItem -recurse -include copyq*.log*
| % { Push-AppveyorArtifact $_.FullName -FileName $_.Name }
matrix:
fast_finish: true