forked from i2pchat/i2pchat
-
Notifications
You must be signed in to change notification settings - Fork 7
/
appveyor.yml
44 lines (38 loc) · 1.04 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
branches:
only:
- master
environment:
matrix:
# MSVC x86
#- name: win32
# platform: amd64_x86
# qt: 5.15\msvc2015
# suffix: msvc2015
# MSVC x64
# - name: win64
# platform: amd64
# qt: 5.15\msvc2015_64
# suffix: msvc2015
# MinGW
- name: win32
platform: mingw
qt: 5.15\mingw81_32
suffix: mingw
init:
- if %platform%==mingw set PATH=C:\Qt\5.15.0\mingw81_32\bin;%PATH%
- set PATH=C:\Qt\%qt%\bin;%PATH%
- if not %platform%==mingw call "C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\vcvarsall.bat" %platform%
- if not %platform%==mingw (set makefiles="NMake Makefiles") else (set makefiles="MinGW Makefiles")
- if %APPVEYOR_REPO_TAG%==true (set nogitinfo=ON) else (set nogitinfo=OFF)
install:
- set PATH=C:\Qt\Tools\mingw730_32\bin;%PATH%
build_script:
- qmake I2PChat.pro
- if not %platform%==mingw (nmake) else (mingw32-make)
after_build:
- windeployqt release/I2PChat.exe
- cmd: cp LICENSE release/LICENSE.txt"
artifacts:
- path: Output\I2PChat-*.exe
- path: release
type: zip