-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathappveyor.yml
32 lines (30 loc) · 1003 Bytes
/
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
install:
- choco install -y curl InnoSetup
- set QTDIR=C:\Qt\5.6\mingw49_32
- set PATH=%PATH%;%QTDIR%\bin;C:\MinGW\bin;"C:\Program Files (x86)\Inno Setup 5"
build_script:
- git submodule init
- git submodule update
- update-dependencies.bat
- qmake LegendsReplay.pro
- mingw32-make
- cp src/release/LegendsReplay.exe .
- windeployqt --compiler-runtime LegendsReplay.exe
- cp C:\\Qt\\5.6\\mingw49_32\\bin\\libwinpthread-1.dll .
- cp C:\\Qt\\5.6\\mingw49_32\\bin\\icudt54.dll .
- cp C:\\Qt\\5.6\\mingw49_32\\bin\\icuin54.dll .
- cp C:\\Qt\\5.6\\mingw49_32\\bin\\icuuc54.dll .
- cp qhttp/xbin/qhttp.dll .
- iscc -DMyAppVersion=%APPVEYOR_REPO_TAG_NAME% setup.iss
artifacts:
- path: setup-LegendsReplay-*.exe
name: LegendsReplaySetup
deploy:
- provider: GitHub
artifact: LegendsReplaySetup
draft: false
prerelease: false
auth_token:
secure: FZ4mi3MDpwe3yKbZxSb/mTxmxz4u13Px4/58qmt6mO72vbt6R6vSoh4/d0TFlswp
on:
appveyor_repo_tag: true