ba8aa8fdc8
Summary: Per some discussions, this will switch our Appveyor testing to use Visual Studio 2017. Closes https://github.com/facebook/rocksdb/pull/3445 Differential Revision: D6874918 Pulled By: gfosco fbshipit-source-id: c5a0032ca9f37f0d3baeae35c59d850d528c3176
16 lines
428 B
YAML
16 lines
428 B
YAML
version: 1.0.{build}
|
|
image: Visual Studio 2017
|
|
before_build:
|
|
- md %APPVEYOR_BUILD_FOLDER%\build
|
|
- cd %APPVEYOR_BUILD_FOLDER%\build
|
|
- cmake -G "Visual Studio 15 Win64" -DOPTDBG=1 -DWITH_XPRESS=1 -DPORTABLE=1 ..
|
|
- cd ..
|
|
build:
|
|
project: build\rocksdb.sln
|
|
parallel: true
|
|
verbosity: normal
|
|
test:
|
|
test_script:
|
|
- ps: build_tools\run_ci_db_test.ps1 -SuiteRun db_basic_test,db_test2,db_test,env_basic_test,env_test -Concurrency 8
|
|
|