From a22ed4eab1f264a564bae5a0affb47e950a4148c Mon Sep 17 00:00:00 2001 From: Siying Dong Date: Wed, 12 Apr 2017 15:00:03 -0700 Subject: [PATCH] internal_repo_rocksdb to build Java and RocksDB LITE Summary: Build Java and RocksDB LITE as a customized unit test under internal_repo_rocksdb. One thing I'm not sure is that whether these two tests are triggered in every flavor. Reviewed By: IslamAbdelRahman Differential Revision: D4855868 fbshipit-source-id: 82a1628b458744d7692bbd29ef7424cca1294031 --- buckifier/targets_cfg.py | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/buckifier/targets_cfg.py b/buckifier/targets_cfg.py index dcbcf3449..e61943ea0 100644 --- a/buckifier/targets_cfg.py +++ b/buckifier/targets_cfg.py @@ -97,4 +97,16 @@ for test_cfg in ROCKS_TESTS: deps = [":" + test_bin], command = [TEST_RUNNER, BUCK_BINS + test_bin] ) + +custom_unittest( + name = "make_rocksdbjavastatic", + type = "simple", + command = ["internal_repo_rocksdb/make_rocksdbjavastatic.sh"], +) + +custom_unittest( + name = "make_rocksdb_lite_release", + type = "simple", + command = ["internal_repo_rocksdb/make_rocksdb_lite_release.sh"], +) """