From 65f89753b093474402e8e48c8fe646963d99dc44 Mon Sep 17 00:00:00 2001 From: mehrdadn Date: Thu, 2 Jul 2020 21:06:31 -0700 Subject: [PATCH] Move full build to install_ray() (#9276) Co-authored-by: Mehrdad --- ci/travis/ci.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ci/travis/ci.sh b/ci/travis/ci.sh index 81397746a..ec430eb44 100755 --- a/ci/travis/ci.sh +++ b/ci/travis/ci.sh @@ -225,6 +225,9 @@ install_go() { install_ray() { ( + # NOTE: Do not add build flags here. Use .bazelrc and --config instead. + bazel build -k "//:*" # Full build first, since pip install will build only a subset of targets + cd "${WORKSPACE_DIR}"/python build_dashboard_front_end pip install -v -e . @@ -447,9 +450,6 @@ init() { } build() { - # NOTE: Do not add build flags here. Use .bazelrc and --config instead. - bazel build -k "//:*" # Full build first, since pip install will build only a subset of targets - if ! need_wheels; then install_ray if [ "${LINT-}" = 1 ]; then