From 9720ea4dee3f47270024bf7c504a301d8c85ecae Mon Sep 17 00:00:00 2001 From: sdong Date: Wed, 18 Mar 2015 17:26:29 -0700 Subject: [PATCH] A build option to run through all check-in requirements. Summary: Make it easier for people to run all the tests. Test Plan: Run it. Reviewers: rven, yhchiang, igor, MarkCallaghan, IslamAbdelRahman, igor.sugak, anthony, kradhakrishnan, meyering Reviewed By: meyering Subscribers: meyering, leveldb, dhruba Differential Revision: https://reviews.facebook.net/D35319 --- Makefile | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Makefile b/Makefile index 8a341709e..8a74c8718 100644 --- a/Makefile +++ b/Makefile @@ -747,6 +747,12 @@ jtest: jdb_bench: cd java;$(MAKE) db_bench; +commit-prereq: + $(MAKE) clean && $(MAKE) all check; + $(MAKE) clean && $(MAKE) rocksdbjava; + $(MAKE) clean && USE_CLANG=1 $(MAKE) all; + $(MAKE) clean && OPT=-DROCKSDB_LITE $(MAKE) release; + # --------------------------------------------------------------------------- # Platform-specific compilation # ---------------------------------------------------------------------------