basic travis and appveyor CI configs

This commit is contained in:
2018-08-05 10:54:55 +07:00
parent ed07be5d70
commit b7c8534782
4 changed files with 52 additions and 1 deletions

18
.appveyor.yml Normal file
View File

@@ -0,0 +1,18 @@
version: "{build}"
shallow_clone: true
image:
- Visual Studio 2015
- Visual Studio 2017
configuration:
- Debug
- Release
platform:
- Win32
- x64
build_script:
- cmake --version
- mkdir build && cd build
- cmake .. -A%PLATFORM%
- cmake --build . --config %CONFIGURATION%
- ctest
test: off