-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathWORKSPACE
More file actions
131 lines (103 loc) · 4.41 KB
/
WORKSPACE
File metadata and controls
131 lines (103 loc) · 4.41 KB
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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
workspace(name = "SnowML")
load("@bazel_tools//tools/build_defs/repo:git.bzl", "git_repository")
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive", "http_jar")
http_jar(
name = "bazel_diff",
sha256 = "eca2d221f5c3ec9545c841ed62d319bbb59e447a1ceade563bc8f8e1b9186a34",
urls = [
"https://github.com/Tinder/bazel-diff/releases/download/5.0.1/bazel-diff_deploy.jar",
],
)
http_archive(
name = "bazel_skylib",
sha256 = "b8a1527901774180afc798aeb28c4634bdccf19c4d98e7bdd1ce79d1fe9aaad7",
urls = [
"https://mirror.bazel.build/github.com/bazelbuild/bazel-skylib/releases/download/1.4.1/bazel-skylib-1.4.1.tar.gz",
"https://github.com/bazelbuild/bazel-skylib/releases/download/1.4.1/bazel-skylib-1.4.1.tar.gz",
],
)
load("@bazel_skylib//:workspace.bzl", "bazel_skylib_workspace")
bazel_skylib_workspace()
http_archive(
name = "rules_python",
patch_args = ["-p1"],
patches = ["@//third_party/rules_python:packaging.patch"],
sha256 = "9d04041ac92a0985e344235f5d946f71ac543f1b1565f2cdbc9a2aaee8adf55b",
strip_prefix = "rules_python-0.26.0",
url = "https://github.com/bazelbuild/rules_python/releases/download/0.26.0/rules_python-0.26.0.tar.gz",
)
load("@rules_python//python:repositories.bzl", "py_repositories")
py_repositories()
load("//third_party/rules_conda:defs.bzl", "conda_create", "load_conda", "register_toolchain")
http_archive(
name = "aspect_bazel_lib",
sha256 = "b44310bef17d33d0e34a624dbbc74de595d37adc16546bd612d6f178eac426e7",
strip_prefix = "bazel-lib-1.34.2",
url = "https://github.com/aspect-build/bazel-lib/releases/download/v1.34.2/bazel-lib-v1.34.2.tar.gz",
)
load("@aspect_bazel_lib//lib:repositories.bzl", "aspect_bazel_lib_dependencies", "register_yq_toolchains")
aspect_bazel_lib_dependencies()
register_yq_toolchains()
git_repository(
name = "bazel_latex",
commit = "f9e1532513760f1379396e55e9e38013869d2a8c",
remote = "https://github.com/ProdriveTechnologies/bazel-latex.git",
)
load("@bazel_latex//:repositories.bzl", "latex_repositories")
latex_repositories()
register_toolchains(
"@bazel_latex//:latex_toolchain_aarch64-darwin",
"@bazel_latex//:latex_toolchain_amd64-freebsd",
"@bazel_latex//:latex_toolchain_x86_64-darwin",
"@bazel_latex//:latex_toolchain_x86_64-linux",
)
local_repository(
name = "rules_sphinx",
path = "./third_party/rules_sphinx",
)
local_repository(
name = "rules_mypy",
path = "./third_party/rules_mypy",
)
# Firstpass tools (pr, jira) for CI/CD automation
git_repository(
name = "firstpass",
build_file = "//third_party/firstpass:firstpass.BUILD",
commit = "2d5a0a51cc77524303cec7c9e644d7a69664344f",
remote = "git@github.com:snowflake-eng/firstpass.git",
)
# Below two conda environments (toolchains) are created and they require different
# constraint values. Two platforms defined in bazel/platforms/BUILD provide those
# constraint values. A toolchain matches a platform as long as the platform provides
# all the constraint values the toolchain requires, which means:
# - py3_toolchain_snowflake_conda_only is used iff
# //bazel/platforms:snowflake_conda_env is the target platform
# - py3_toolchain_extended_channels is used iff
# //bazel/platforms:extended_conda_env is the target platform
#
# The default platform when --platforms flag is not set, is specified in
# .bazelrc .
load("@SnowML//bazel/environments:fetch_conda_env_config.bzl", "fetch_conda_env_config")
fetch_conda_env_config(name = "fetch_conda_env_config_repo")
load("@fetch_conda_env_config_repo//:config.bzl", "COMPATIBLE_TARGET", "ENVIRONMENT", "NAME", "PYTHON_VERSION")
PYTHON_VERSION_DISPLAY_NAME = "".join(PYTHON_VERSION.split("."))
load_conda(
conda_repo_name = "{}_conda_{}".format(NAME, PYTHON_VERSION_DISPLAY_NAME),
quiet = True,
)
conda_create(
name = "{}_env_{}".format(NAME, PYTHON_VERSION_DISPLAY_NAME),
timeout = 3600,
clean = False,
conda_repo_name = "{}_conda_{}".format(NAME, PYTHON_VERSION_DISPLAY_NAME),
coverage_tool = "@//bazel/coverage_tool:coverage_tool.py",
environment = ENVIRONMENT,
python_version = PYTHON_VERSION,
quiet = True,
)
register_toolchain(
name = "{}_env_{}_repo".format(NAME, PYTHON_VERSION_DISPLAY_NAME),
env = "{}_env_{}".format(NAME, PYTHON_VERSION_DISPLAY_NAME),
target_compatible_with = COMPATIBLE_TARGET,
toolchain_name = "py{}_toolchain_{}_env".format(PYTHON_VERSION_DISPLAY_NAME, NAME),
)