Is it possible to use AppVeyor as a Windows Qt continuous integration service?
appveyor. yml is a project configuration file in YAML format that should be placed in the root of your repository. At a minimum appveyor. yml is just an empty file.
AppVeyor is a hosted, distributed continuous integration service used to build and test projects hosted on GitHub and other source code hosting services (including GitLab and Bitbucket) on a Microsoft Windows virtual machine, as well as Ubuntu Linux virtual machines.
Qt is preinstalled on all configurations. See http://www.appveyor.com/docs/installed-software#qt
Here is an example script for appveyor.yml :
install:
- set QTDIR=C:\Qt\5.5\mingw492_32
- set PATH=%PATH%;%QTDIR%\bin;C:\MinGW\bin
build_script:
- qmake QtTest.pro
- mingw32-make
Supported compiler environments are mingw492_32
, msvc2013
and msvc2013_64
.
Looks like Qt is now available for all configurations - http://www.appveyor.com/docs/installed-software#qt
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With