e154ee0863
Test code errors are currently blocking Windows Release builew We do not want spend time building in Release what we can not run We want to eliminate a source of most frequent errors when people check-in test only code which can not be built in Release. This feature will work only if you invoke msbuild against rocksdb.sln Invoking it against ALL_BUILD target will attempt to build everything.
12 lines
236 B
YAML
12 lines
236 B
YAML
version: 1.0.{build}
|
|
before_build:
|
|
- md %APPVEYOR_BUILD_FOLDER%\build
|
|
- cd %APPVEYOR_BUILD_FOLDER%\build
|
|
- cmake -G "Visual Studio 12 Win64" ..
|
|
- cd ..
|
|
build:
|
|
project: build\rocksdb.sln
|
|
parallel: true
|
|
verbosity: minimal
|
|
test: off
|