-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
appveyor.yml - merge from master and remove the rdp stuff
- Loading branch information
Allen Winter
committed
Jul 1, 2016
1 parent
d2c3f7a
commit 58e4797
Showing
1 changed file
with
80 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,80 @@ | ||
#---------------------------------# | ||
# general configuration # | ||
#---------------------------------# | ||
|
||
# version format | ||
version: 1.0.{build}-{branch} | ||
|
||
# branches to build | ||
branches: | ||
except: | ||
- gh-pages | ||
|
||
# Do not build on tags (GitHub and BitBucket) | ||
skip_tags: false | ||
|
||
#---------------------------------# | ||
# environment configuration # | ||
#---------------------------------# | ||
|
||
# Build worker image | ||
image: | ||
- Visual Studio 2013 | ||
|
||
# scripts that are called at very beginning, before repo cloning | ||
init: | ||
- git config --global core.autocrlf input | ||
|
||
#---------------------------------# | ||
# build configuration # | ||
#---------------------------------# | ||
|
||
# build platform, i.e. x86, x64, Any CPU. This setting is optional. | ||
platform: | ||
- x86 | ||
# - x64 | ||
|
||
# build Configuration, i.e. Debug, Release, etc. | ||
configuration: | ||
- Debug | ||
- Release | ||
|
||
install: | ||
- call "C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\vcvarsall.bat" %PLATFORM% | ||
- set QTDIR=C:\Qt\5.6\msvc2013 | ||
- set PATH=%QTDIR%\bin;%PATH% | ||
build_script: | ||
- mkdir build | ||
- cd build | ||
- cmake -G "NMake Makefiles" -DCMAKE_BUILD_TYPE=%CONFIGURATION% .. | ||
- nmake | ||
|
||
# to disable automatic builds | ||
#build: off | ||
|
||
#---------------------------------# | ||
# tests configuration # | ||
#---------------------------------# | ||
|
||
test_script: | ||
- nmake test | ||
|
||
# to disable automatic tests | ||
#test: off | ||
|
||
|
||
#---------------------------------# | ||
# deployment configuration # | ||
#---------------------------------# | ||
|
||
deploy: off | ||
|
||
#---------------------------------# | ||
# notifications # | ||
#---------------------------------# | ||
notifications: | ||
- provider: Email | ||
to: | ||
- allen.winter@kdab.com | ||
on_build_status_changed: true |