forked from hluk/CopyQ
-
Notifications
You must be signed in to change notification settings - Fork 0
/
appveyor.yml
52 lines (40 loc) · 1.29 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
# Configuration file for AppVeyor CI
configuration: Release
image:
- Visual Studio 2019
environment:
matrix:
- QTDIR: C:\Qt\5.13\mingw73_32
CMAKE_GENERATOR: MinGW Makefiles
MINGW_PATH: C:\Qt\Tools\mingw730_32
# https://wiki.qt.io/Qt_5.13_Tools_and_Versions
# https://www.appveyor.com/docs/windows-images-software/#tools
OPENSSL_PATH: C:\OpenSSL-v111-Win32\bin
LIBSSL: libssl-1_1.dll
LIBCRYPTO: libcrypto-1_1.dll
- QTDIR: C:\Qt\5.13\mingw73_64
CMAKE_GENERATOR: MinGW Makefiles
MINGW_PATH: C:\Qt\Tools\mingw730_64
OPENSSL_PATH: C:\OpenSSL-v111-Win64\bin
LIBSSL: libssl-1_1-x64.dll
LIBCRYPTO: libcrypto-1_1-x64.dll
# Parameters for default build commands (build_script is used instead).
build:
install:
- utils\appveyor\install.bat
before_build:
- utils\appveyor\before_build.bat
build_script:
- utils\appveyor\build_script.bat
after_build:
- utils\appveyor\after_build.bat
artifacts:
- path: 'copyq*.zip'
name: CopyQ Portable
- 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 # set this flag to immediately finish build once one of the jobs fails.