forked from mirror/nheko
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
650 B
32 lines
650 B
version: 0.1.0-{build}
|
|
|
|
environment:
|
|
global:
|
|
MSYSTEM: "MINGW64"
|
|
|
|
platform: x64
|
|
|
|
configuration:
|
|
- Release
|
|
|
|
build:
|
|
verbosity: minimal
|
|
|
|
install:
|
|
- set QT_DIR=C:\Qt\5.8\msvc2015_64
|
|
- set PATH=%PATH%;%QT_DIR%\bin;C:\MinGW\bin
|
|
|
|
build_script:
|
|
- cmake -G "Visual Studio 14 2015 Win64" -H. -Bbuild
|
|
- cmake --build build --config Release
|
|
- ls -lh build
|
|
|
|
after_build:
|
|
- mkdir NhekoRelease
|
|
- copy build\Release\nheko.exe NhekoRelease\nheko.exe
|
|
- windeployqt --release NhekoRelease\nheko.exe
|
|
- 7z a nheko_win_64.zip .\NhekoRelease\*
|
|
|
|
artifacts:
|
|
- path: nheko_win_64.zip
|
|
- path: NhekoRelease\nheko.exe
|
|
|