From 77cbc0295de5278c2df821ead9372267b4efb057 Mon Sep 17 00:00:00 2001 From: Gary Wang Date: Mon, 30 Sep 2019 23:08:12 +0800 Subject: [PATCH] appveyor build --- appveyor.yml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 appveyor.yml diff --git a/appveyor.yml b/appveyor.yml new file mode 100644 index 0000000..d29de55 --- /dev/null +++ b/appveyor.yml @@ -0,0 +1,24 @@ +environment: + matrix: + - build_name: mingw53_32_qt5_11_3 + QTPATH: C:\Qt\5.11.3\mingw53_32 + MINGW32: C:\Qt\Tools\mingw530_32 +# - 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 + - windeployqt --no-quick-import --release .\PineapplePictures.exe + +artifacts: + - path: build\release