forked from kubo/plthook
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.appveyor.yml
35 lines (27 loc) · 927 Bytes
/
.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
#---------------------------------#
# general configuration #
#---------------------------------#
# version format
version: 0.1.{build}
#---------------------------------#
# environment configuration #
#---------------------------------#
# Build worker image (VM template)
image: Visual Studio 2015
#---------------------------------#
# build configuration #
#---------------------------------#
# build platform, i.e. x86, x64, Any CPU
platform:
- x86
- x64
build_script:
- if "%platform%" == "x86" call "C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\vcvarsall.bat" x86
- if "%platform%" == "x64" call "C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\vcvarsall.bat" amd64
- cd test
- nmake /f Makefile.win32
#---------------------------------#
# tests configuration #
#---------------------------------#
test_script:
- nmake /f Makefile.win32 check