Skip to content

Commit

Permalink
Add AppVeyor configuration file for running MSVC tests (#19)
Browse files Browse the repository at this point in the history
Qt 5.6/msvc2013 and Qt 5.9/msvc2013_64
  • Loading branch information
pwuertz authored and simonbrunel committed May 23, 2018
1 parent 8da467e commit bdf3619
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .appveyor.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
image: Visual Studio 2015

init:
- cmd: call "C:\Program Files (x86)\Microsoft Visual Studio "%VSVER%".0\VC\vcvarsall.bat" %ARCH%

environment:
PATH: '%PATH%;%QTDIR%\bin'
matrix:
- QTDIR: C:\Qt\5.6\msvc2013
VSVER: 12
ARCH: x86
- QTDIR: C:\Qt\5.9\msvc2013_64
VSVER: 12
ARCH: x64

build_script:
- cmd: qmake qtpromise.pro
- cmd: nmake

test_script:
- cmd: nmake check

0 comments on commit bdf3619

Please # to comment.