We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f468b3e commit 36bed82Copy full SHA for 36bed82
python/setup.py
@@ -33,7 +33,6 @@
33
34
ROOT_DIR = os.path.dirname(__file__)
35
BUILD_JAVA = os.getenv("RAY_INSTALL_JAVA") == "1"
36
-BUILD_CPP = os.getenv("RAY_INSTALL_CPP") == "1"
37
SKIP_BAZEL_BUILD = os.getenv("SKIP_BAZEL_BUILD") == "1"
38
BAZEL_ARGS = os.getenv("BAZEL_ARGS")
39
BAZEL_LIMIT_CPUS = os.getenv("BAZEL_LIMIT_CPUS")
@@ -702,7 +701,7 @@ def pip_run(build_ext):
702
701
if SKIP_BAZEL_BUILD:
703
build(False, False, False)
704
else:
705
- build(True, BUILD_JAVA, BUILD_CPP or BUILD_JAVA)
+ build(True, BUILD_JAVA, True)
706
707
if setup_spec.type == SetupType.RAY:
708
setup_spec.files_to_include += ray_files
0 commit comments