-
Notifications
You must be signed in to change notification settings - Fork 34
Expand file tree
/
Copy pathWORKSPACE
More file actions
27 lines (19 loc) · 855 Bytes
/
WORKSPACE
File metadata and controls
27 lines (19 loc) · 855 Bytes
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
workspace(name="dbx_build_tools")
# Add external dependencies in //build_tools/bazel:external_workspace.bzl.
load("//build_tools/bazel:external_workspace.bzl", "drte_deps")
drte_deps()
load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
http_archive(
name = "io_bazel_rules_go",
sha256 = "278b7ff5a826f3dc10f04feaf0b70d48b68748ccd512d7f98bf442077f043fe3",
urls = [
"https://mirror.bazel.build/github.com/bazelbuild/rules_go/releases/download/v0.41.0/rules_go-v0.41.0.zip",
"https://github.com/bazelbuild/rules_go/releases/download/v0.41.0/rules_go-v0.41.0.zip",
],
)
load("@io_bazel_rules_go//go:deps.bzl", "go_register_toolchains", "go_rules_dependencies")
go_rules_dependencies()
go_register_toolchains(version = "1.20.7")
register_toolchains(
"//thirdparty/cpython:drte-off-39-toolchain",
)