forked from hluk/CopyQ
-
Notifications
You must be signed in to change notification settings - Fork 0
/
appveyor.yml
51 lines (37 loc) · 1.2 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
# Configuration file for AppVeyor CI
configuration: Release
environment:
VCINSTALLDIR: C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\
matrix:
- QTDIR: C:\Qt\5.7\mingw53_32
CMAKE_GENERATOR: MinGW Makefiles
MINGW_PATH: C:\Qt\Tools\mingw530_32
- QTDIR: C:\Qt\5.9\mingw53_32
CMAKE_GENERATOR: MinGW Makefiles
MINGW_PATH: C:\Qt\Tools\mingw530_32
- QTDIR: C:\Qt\5.9\msvc2015
CMAKE_GENERATOR: Visual Studio 14 2015
VC_VARS_ARCH: x86
- QTDIR: C:\Qt\5.9\msvc2015_64
CMAKE_GENERATOR: Visual Studio 14 2015 Win64
VC_VARS_ARCH: amd64
# 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.