-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathappveyor.yml
59 lines (48 loc) · 1.77 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
#--------------------------------------------------------------------------------
# AppVeyor CI building configuration file for Microsoft Windows Operating system
# created 2016-08-09
#--------------------------------------------------------------------------------
version: 1.3.1.{build}
branches:
only: # whitelist
- master
skip_tags: true
skip_commits:
message: /Created.*\.(png|jpg|jpeg|bmp|gif|md)/ # Regex for matching commit message
files:
- '*.md'
- 'LICENSE'
- '.gitignore'
# Operating system (build VM template)
os: unstable
# clone directory
clone_folder: C:\_Repos\OPN2BankEditor
clone_depth: 3 # clone entire repository history if not defined
# Uncommend those two lines to enable RDP (which can be used to debug stuff and test built stuff)
# init:
# - ps: iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/appveyor/ci/master/scripts/enable-rdp.ps1'))
environment:
matrix:
- APPVEYOR_BUILD_WORKER_IMAGE: "Visual Studio 2019"
PLATFORM: Win64
WINXX_ARCH: win64
COMPILER: C:\Qt\Tools\mingw810_64\bin
QT_DIR: C:\Qt\5.15\mingw81_64\bin
- APPVEYOR_BUILD_WORKER_IMAGE: "Visual Studio 2013"
PLATFORM: Win32
WINXX_ARCH: win32
COMPILER: C:\Qt\Tools\mingw530_32\bin
QT_DIR: C:\Qt\5.7\mingw53_32\bin # Qt since 5.8 no more supports Windows XP, Keep support for Windows XP yet
install:
- git submodule init
- git submodule update
- echo set QtDir=%QT_DIR%>> _paths.bat
- echo set MinGW=%COMPILER%>> _paths.bat
- echo set GitDir=C:\Program Files\Git\cmd>> _paths.bat
build_script:
- build.bat
artifacts:
- path: opn2-bank-editor\opn2-bank-editor-dev-$(WINXX_ARCH).zip
deploy:
- provider: Environment
name: WohlnetFTP