-
Notifications
You must be signed in to change notification settings - Fork 456
/
appveyor.yml
67 lines (53 loc) · 1.49 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
61
62
63
64
65
66
67
---
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
KF_VERSION: 6.7
KF_BRANCH: stable
KF_PATCH: 0
SNORETOAST_VERSION: 0.9.0
matrix:
- QTDIR: /c/Qt/6.5/msvc2019_64
CMAKE_GENERATOR: Visual Studio 16 2019
CMAKE_GENERATOR_ARCH: x64
BUILD_SUB_DIR: Release
# https://wiki.qt.io/Qt_6.5_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
GPGPATH: /c/Program Files/Git/usr/bin
WITH_NATIVE_NOTIFICATIONS: "ON"
WITH_QT6: "ON"
WINDEPLOYQT_ARGS: >-
--no-system-d3d-compiler
--no-opengl-sw
--no-quick
# Parameters for default build commands (build_script is used instead).
build: false
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
test_script:
- bash utils/appveyor/test_screenshots.sh
- bash utils/appveyor/test.sh
# Upload test log files.
on_finish:
- ps: >-
Get-ChildItem -recurse -include copyq*.log*
| % { Push-AppveyorArtifact $_.FullName -FileName $_.Name }
matrix:
fast_finish: true