2015-08-07 14:50:34 -07:00
|
|
|
version: 1.0.{build}
|
|
|
|
before_build:
|
|
|
|
- md %APPVEYOR_BUILD_FOLDER%\build
|
|
|
|
- cd %APPVEYOR_BUILD_FOLDER%\build
|
2015-11-10 17:28:56 -08:00
|
|
|
- cmake -G "Visual Studio 12 Win64" -DOPTDBG=1 ..
|
2015-08-07 14:50:34 -07:00
|
|
|
- cd ..
|
|
|
|
build:
|
2015-10-20 13:35:08 -07:00
|
|
|
project: build\rocksdb.sln
|
2015-09-29 12:22:48 -07:00
|
|
|
parallel: true
|
2015-08-07 14:50:34 -07:00
|
|
|
verbosity: minimal
|
2015-11-10 17:23:16 -08:00
|
|
|
test:
|
|
|
|
test_script:
|
2015-11-17 13:54:13 -08:00
|
|
|
- ps: build_tools\run_ci_db_test.ps1 -EnableRerun -Run db_test -Exclude DBTest.Randomized,DBTest.FileCreationRandomFailure -Concurrency 18
|
2015-11-12 14:42:38 -08:00
|
|
|
- ps: build_tools\run_ci_db_test.ps1 -Run env_test -Concurrency 1
|
2015-11-10 17:23:16 -08:00
|
|
|
|