Move full build to install_ray() (#9276)

Co-authored-by: Mehrdad <noreply@github.com>
This commit is contained in:
mehrdadn
2020-07-02 21:06:31 -07:00
committed by GitHub
parent aea3d53545
commit 65f89753b0
+3 -3
View File
@@ -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