2015-08-07 23:50:34 +02:00
|
|
|
version: 1.0.{build}
|
2016-08-10 18:08:13 +02:00
|
|
|
image: Visual Studio 2015
|
2015-08-07 23:50:34 +02:00
|
|
|
before_build:
|
|
|
|
- md %APPVEYOR_BUILD_FOLDER%\build
|
|
|
|
- cd %APPVEYOR_BUILD_FOLDER%\build
|
2016-08-10 18:08:13 +02:00
|
|
|
- cmake -G "Visual Studio 14 2015 Win64" -DOPTDBG=1 -DXPRESS=1 ..
|
2015-08-07 23:50:34 +02:00
|
|
|
- cd ..
|
|
|
|
build:
|
2015-10-20 22:35:08 +02:00
|
|
|
project: build\rocksdb.sln
|
2015-09-29 21:22:48 +02:00
|
|
|
parallel: true
|
2015-08-07 23:50:34 +02:00
|
|
|
verbosity: minimal
|
2015-11-11 02:23:16 +01:00
|
|
|
test:
|
|
|
|
test_script:
|
2017-02-27 21:19:23 +01:00
|
|
|
- ps: build_tools\run_ci_db_test.ps1 -Run db_basic_test -Concurrency 8
|
2017-01-18 23:09:58 +01:00
|
|
|
- ps: build_tools\run_ci_db_test.ps1 -Run db_test2 -Concurrency 8
|
|
|
|
- ps: build_tools\run_ci_db_test.ps1 -Run db_test -Concurrency 8
|
|
|
|
- ps: build_tools\run_ci_db_test.ps1 -Run env_test,env_basic_test -Concurrency 2
|
2015-11-11 02:23:16 +01:00
|
|
|
|