From 50ba245f6d78c18b15233de42c458ba20dd8c31f Mon Sep 17 00:00:00 2001 From: Peter Dillinger Date: Fri, 15 May 2020 13:57:34 -0700 Subject: [PATCH] Use 'make all' in LITE Travis configuration (#6834) Summary: So that we don't miss LITE compilation errors in tests Pull Request resolved: https://github.com/facebook/rocksdb/pull/6834 Reviewed By: anand1976 Differential Revision: D21503227 Pulled By: pdillinger fbshipit-source-id: 3b2fdf3c4d395354d0ababac06da32addbafb3a5 --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 561fbff8a..75a770827 100644 --- a/.travis.yml +++ b/.travis.yml @@ -269,7 +269,7 @@ script: OPT=-DTRAVIS V=1 make rocksdbjava jtest ;; lite_build) - OPT='-DTRAVIS -DROCKSDB_LITE' V=1 make -j4 static_lib tools + OPT='-DTRAVIS -DROCKSDB_LITE' V=1 make -j4 all ;; examples) OPT=-DTRAVIS V=1 make -j4 static_lib && cd examples && make -j4