You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kudu.apache.org by jd...@apache.org on 2017/04/20 16:23:49 UTC

kudu git commit: make_site: only build necessary binaries

Repository: kudu
Updated Branches:
  refs/heads/master 998e4cabe -> b2843ee5e


make_site: only build necessary binaries

make_site relies on these binaries to build docs for them, but doesn't
rely on any other binaries (or the tests). This speeds up the site
build.

Change-Id: Icbcd5b0327a6419fe732daa05e064aa9249e8298
Reviewed-on: http://gerrit.cloudera.org:8080/6695
Reviewed-by: Jean-Daniel Cryans <jd...@apache.org>
Tested-by: Kudu Jenkins


Project: http://git-wip-us.apache.org/repos/asf/kudu/repo
Commit: http://git-wip-us.apache.org/repos/asf/kudu/commit/b2843ee5
Tree: http://git-wip-us.apache.org/repos/asf/kudu/tree/b2843ee5
Diff: http://git-wip-us.apache.org/repos/asf/kudu/diff/b2843ee5

Branch: refs/heads/master
Commit: b2843ee5ef9a666a2376cfe4ae44a8d0ceb4503f
Parents: 998e4ca
Author: Todd Lipcon <to...@apache.org>
Authored: Wed Apr 19 14:39:20 2017 -0700
Committer: Jean-Daniel Cryans <jd...@apache.org>
Committed: Thu Apr 20 16:23:09 2017 +0000

----------------------------------------------------------------------
 docs/support/scripts/make_site.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/kudu/blob/b2843ee5/docs/support/scripts/make_site.sh
----------------------------------------------------------------------
diff --git a/docs/support/scripts/make_site.sh b/docs/support/scripts/make_site.sh
index 38a4cbd..3d2e5e5 100755
--- a/docs/support/scripts/make_site.sh
+++ b/docs/support/scripts/make_site.sh
@@ -74,7 +74,7 @@ $SOURCE_ROOT/build-support/enable_devtoolset.sh \
     -DNO_TESTS=1 \
     -DCMAKE_BUILD_TYPE=$BUILD_TYPE \
     $SOURCE_ROOT
-MAKE_TARGETS=all
+MAKE_TARGETS="kudu kudu-tserver kudu-master"
 if [ -n "$OPT_DOXYGEN" ]; then
   MAKE_TARGETS="$MAKE_TARGETS doxygen"
 fi