2019-09-30 23:08:12 +08:00
|
|
|
environment:
|
|
|
|
matrix:
|
2019-11-16 16:00:47 +08:00
|
|
|
- build_name: mingw73_32_qt5_12_5
|
|
|
|
QTPATH: C:\Qt\5.12.5\mingw73_32
|
2019-10-05 14:58:09 +08:00
|
|
|
MINGW32: C:\Qt\Tools\mingw730_32
|
2019-09-30 23:08:12 +08:00
|
|
|
# - build_name: msvc2017_64
|
|
|
|
# QTPATH: C:\Qt\5.11.2\msvc2017_64
|
|
|
|
# MINGW32: C:\Qt\Tools\mingw530_32
|
|
|
|
|
|
|
|
install:
|
|
|
|
- cd %APPVEYOR_BUILD_FOLDER%
|
|
|
|
- git submodule update --init --recursive
|
|
|
|
- set PATH=%PATH%;%QTPATH%\bin;%MINGW32%\bin
|
|
|
|
|
|
|
|
build_script:
|
|
|
|
- mkdir build
|
|
|
|
- cd build
|
|
|
|
- qmake ..\PineapplePictures.pro
|
|
|
|
- mingw32-make
|
|
|
|
- cd release
|
2019-09-30 23:20:04 +08:00
|
|
|
- del /a /f /q "*.o" "*.cpp" "*.h"
|
2019-10-13 22:22:54 +08:00
|
|
|
- windeployqt --no-quick-import --no-translations --no-opengl-sw --no-angle --no-system-d3d-compiler --release .\PineapplePictures.exe
|
2019-09-30 23:08:12 +08:00
|
|
|
|
|
|
|
artifacts:
|
|
|
|
- path: build\release
|