enable incremental builds (#3292)

This commit is contained in:
Philipp Moritz 2018-11-12 18:49:09 -08:00 committed by Robert Nishihara
parent bd0dbde149
commit ce6e01b988
2 changed files with 2 additions and 0 deletions

View file

@ -104,6 +104,7 @@ pushd "$BUILD_DIR"
# avoid the command failed and exits
# and cmake will check some directories to determine whether some targets built
make clean || true
rm -rf external/arrow-install
cmake -DCMAKE_BUILD_TYPE=$CBUILD_TYPE \
-DCMAKE_RAY_LANG_JAVA=$RAY_BUILD_JAVA \

View file

@ -92,6 +92,7 @@ ExternalProject_Add(arrow_ep
DEPENDS flatbuffers boost glog
GIT_REPOSITORY ${arrow_URL}
GIT_TAG ${arrow_TAG}
UPDATE_COMMAND ""
${ARROW_CONFIGURE}
BUILD_BYPRODUCTS "${ARROW_SHARED_LIB}" "${ARROW_STATIC_LIB}")