forked from sheredom/hashmap.h
-
Notifications
You must be signed in to change notification settings - Fork 0
/
appveyor.yml
44 lines (36 loc) · 1.14 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
36
37
38
39
40
41
42
43
44
version: '{build}'
skip_tags: true
install: []
environment:
matrix:
- VSVERSION: Visual Studio 9 2008
- VSVERSION: Visual Studio 10 2010
- VSVERSION: Visual Studio 11 2012
- VSVERSION: Visual Studio 12 2013
- VSVERSION: Visual Studio 14 2015
- VSVERSION: Visual Studio 15 2017
APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017
- VSVERSION: Visual Studio 16 2019
APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2019
platform:
- Win32
- x64
matrix:
exclude:
- platform: x64
VSVERSION: Visual Studio 9 2008
configuration:
- Debug
- RelWithDebInfo
- MinSizeRel
- Release
build_script:
- md build
- cd build
- if NOT "%VSVERSION%"=="Visual Studio 16 2019" if "%PLATFORM%"=="x64" cmake -G "%VSVERSION% Win64" ../test
- if NOT "%VSVERSION%"=="Visual Studio 16 2019" if "%PLATFORM%"=="Win32" cmake -G "%VSVERSION%" ../test
- if "%VSVERSION%"=="Visual Studio 16 2019" cmake -G "%VSVERSION%" -A "%PLATFORM%" ../test
- msbuild /m /p:Configuration="%CONFIGURATION%" /p:Platform="%PLATFORM%" hashmap.sln
- copy %CONFIGURATION%\hashmap_test.exe hashmap_test.exe
test_script:
- hashmap_test.exe