0
0
mirror of https://github.com/rbock/sqlpp11.git synced 2024-11-15 20:31:16 +08:00

Added first appveyor config

This commit is contained in:
rbock 2015-12-27 20:23:27 +01:00
parent 76f7e4aad9
commit c5d4b4f8b3

28
.appveyor.yml Normal file
View File

@ -0,0 +1,28 @@
os: Visual Studio 2015
platform:
- x64
configuration:
- Debug
- Release
matrix:
fast_finish: true
build_script:
- CD
- pushd ..
- CD
- git clone https://github.com/HowardHinnant/date
- popd
- CD
- echo %configuration%
- mkdir build
- pushd .
- cd build
- cmake --version
- cmake ..
- cmake --build . --config %configuration%
- ctest . --build-config %configuration%