summaryrefslogtreecommitdiff
path: root/build_tools
diff options
context:
space:
mode:
authorYi Wu <yiwu@fb.com>2017-10-17 08:49:11 -0700
committerFacebook Github Bot <facebook-github-bot@users.noreply.github.com>2017-10-17 08:57:09 -0700
commit8e63cad078503941530b1c8278dbef32d0027255 (patch)
treeea918b586111f89f870f511a764f3a95a669d614 /build_tools
parent731895214bb729f4b748c8051d2d4c81927ff47f (diff)
fix lite build
Summary: * make `checksum_type_string_map` available for lite * comment out `FilesPerLevel` in lite mode. * travis and legocastle lite build also build `all` target and run tests Closes https://github.com/facebook/rocksdb/pull/3015 Differential Revision: D6069822 Pulled By: yiwu-arbug fbshipit-source-id: 9fe92ac220e711e9e6ed4e921bd25ef4314796a0
Diffstat (limited to 'build_tools')
-rwxr-xr-xbuild_tools/rocksdb-lego-determinator25
1 files changed, 1 insertions, 24 deletions
diff --git a/build_tools/rocksdb-lego-determinator b/build_tools/rocksdb-lego-determinator
index a40b3064e..6e8ae9cd7 100755
--- a/build_tools/rocksdb-lego-determinator
+++ b/build_tools/rocksdb-lego-determinator
@@ -343,27 +343,7 @@ LITE_BUILD_COMMANDS="[
$CLEANUP_ENV,
{
'name':'Build RocksDB debug version',
- 'shell':'$LITE make J=1 static_lib || $CONTRUN_NAME=lite_static_lib $TASK_CREATION_TOOL',
- 'user':'root',
- $PARSER
- },
- ],
- $REPORT
- }
-]"
-
-#
-# RocksDB lite tests
-#
-LITE_UNIT_TEST_COMMANDS="[
- {
- 'name':'Rocksdb Lite Unit Test',
- 'oncall':'$ONCALL',
- 'steps': [
- $CLEANUP_ENV,
- {
- 'name':'Build RocksDB debug version',
- 'shell':'$SHM $LITE make J=1 check || $CONTRUN_NAME=lite_check $TASK_CREATION_TOOL',
+ 'shell':'$LITE make J=1 all check || $CONTRUN_NAME=lite $TASK_CREATION_TOOL',
'user':'root',
$PARSER
},
@@ -748,9 +728,6 @@ case $1 in
lite)
echo $LITE_BUILD_COMMANDS
;;
- lite_test)
- echo $LITE_UNIT_TEST_COMMANDS
- ;;
stress_crash)
echo $STRESS_CRASH_TEST_COMMANDS
;;