forked from ray-project/ray
-
Notifications
You must be signed in to change notification settings - Fork 0
/
WORKSPACE
88 lines (62 loc) · 2.72 KB
/
WORKSPACE
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
workspace(name = "com_github_ray_project_ray")
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
load("//bazel:ray_deps_setup.bzl", "ray_deps_setup")
ray_deps_setup()
load("//bazel:ray_deps_build_all.bzl", "ray_deps_build_all")
ray_deps_build_all()
# This needs to be run after grpc_deps() in ray_deps_build_all() to make
# sure all the packages loaded by grpc_deps() are available. However a
# load() statement cannot be in a function so we put it here.
load("@com_github_grpc_grpc//bazel:grpc_extra_deps.bzl", "grpc_extra_deps")
grpc_extra_deps()
load("@bazel_skylib//lib:versions.bzl", "versions")
# TODO (shrekris-anyscale): Update the min version to 4.2.2 once Windows uses
# it in CI.
# Please keep this in sync with the .bazeliskrc file.
versions.check(minimum_bazel_version = "5.4.1")
# Tools to generate `compile_commands.json` to enable awesome tooling of the C language family.
# Just run `bazel run @hedron_compile_commands//:refresh_all`
load("@hedron_compile_commands//:workspace_setup.bzl", "hedron_compile_commands_setup")
hedron_compile_commands_setup()
http_archive(
name = "rules_python",
sha256 = "94750828b18044533e98a129003b6a68001204038dc4749f40b195b24c38f49f",
strip_prefix = "rules_python-0.21.0",
url = "https://github.com/bazelbuild/rules_python/releases/download/0.21.0/rules_python-0.21.0.tar.gz",
)
load("@rules_python//python:repositories.bzl", "python_register_toolchains")
python_register_toolchains(
name = "python3_9",
python_version = "3.9",
register_toolchains = False,
)
load("@python3_9//:defs.bzl", python39 = "interpreter")
load("@rules_python//python/pip_install:repositories.bzl", "pip_install_dependencies")
pip_install_dependencies()
load("@rules_python//python:pip.bzl", "pip_parse")
pip_parse(
name = "py_deps_buildkite",
python_interpreter_target = python39,
requirements_lock = "//release:requirements_buildkite.txt",
)
pip_parse(
name = "py_deps_ray_ci",
python_interpreter_target = python39,
requirements_lock = "//ci/ray_ci:requirements.txt",
)
pip_parse(
name = "py_deps_compile_py_proto",
python_interpreter_target = python39,
requirements_lock = "//ci/compile_py_proto:requirements_compile_py_proto.txt",
)
load("@py_deps_buildkite//:requirements.bzl", install_py_deps_buildkite = "install_deps")
load("@py_deps_ray_ci//:requirements.bzl", install_py_deps_ray_ci = "install_deps")
load("@py_deps_compile_py_proto//:requirements.bzl", install_py_deps_compile_py_proto = "install_deps")
install_py_deps_buildkite()
install_py_deps_ray_ci()
install_py_deps_compile_py_proto()
register_toolchains("//:python_toolchain")
register_execution_platforms(
"@local_config_platform//:host",
"//:hermetic_python_platform",
)