forked from coolchess123/tceccutechess
-
Notifications
You must be signed in to change notification settings - Fork 10
/
.appveyor.yml
35 lines (30 loc) · 1.03 KB
/
.appveyor.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
os: Visual Studio 2015
version: 1.0.0.{build}
install:
# https://www.appveyor.com/docs/installed-software/#qt
- set QTDIR=C:\Qt\5.9\msvc2015_64
- set PATH=%QTDIR%\bin;%PATH%
- call "C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\vcvarsall.bat" amd64
- qmake -v
build_script:
- qmake
- nmake /NOLOGO
test_script:
- cd %APPVEYOR_BUILD_FOLDER%\projects\lib\tests\
- qmake
- nmake /NOLOGO
- '%cd%\chessboard\release\tst_board'
- '%cd%\mersenne\release\tst_mersenne'
- cd polyglotbook & release\tst_polyglotbook & cd..
- '%cd%\sprt\release\tst_sprt'
- '%cd%\tournamentpair\release\tst_tournamentpair'
- '%cd%\tournamentplayer\release\tst_tournamentplayer'
- '%cd%\pipereader\release\tst_pipereader'
- cd %APPVEYOR_BUILD_FOLDER%\projects\lib\components\json\tests\
- qmake
- nmake /NOLOGO
- cd parser & release\tst_jsonparser & cd..
- cd serializer & release\tst_jsonserializer & cd..
artifacts:
- path: projects\cli\cutechess-cli.exe
name: cutechess-cli