-
Notifications
You must be signed in to change notification settings - Fork 181
Expand file tree
/
Copy pathlocal_bazel.bzl
More file actions
67 lines (59 loc) · 2.18 KB
/
Copy pathlocal_bazel.bzl
File metadata and controls
67 lines (59 loc) · 2.18 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
# Copyright 2026 The Bazel Authors. All rights reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
"""Repository rule for importing the copy of Bazel on the user's PATH."""
def _local_bazel_import_impl(repository_ctx):
if "windows" in repository_ctx.os.name.lower():
bazel_real = "bazel-real.exe"
bazel_name = "bazel.exe"
sh_binary_name = "bazel_bin.exe"
link_name = "bazel_link.exe"
else:
bazel_real = "bazel-real"
bazel_name = "bazel"
sh_binary_name = "bazel_bin"
link_name = "bazel_link"
# Prioritise bazel-real if it exists since it's much more likely to be an actual executable.
bazel_path = repository_ctx.which(bazel_real)
if bazel_path == None:
bazel_path = repository_ctx.which(bazel_name)
if bazel_path == None:
fail("Neither '%s' or '%s' not found on PATH." % (bazel_real, bazel_name))
repository_ctx.symlink(bazel_path, link_name)
# sh_binary on Windows must end with .exe but we want a consistent target name, so we
# wrap it in an alias.
repository_ctx.file(
"BUILD",
executable = False,
content = """
load({sh_binary_bzl}, "sh_binary")
sh_binary(
name = "{bazel_bin}",
srcs = ["{bazel_binary}"],
visibility = ["//visibility:public"],
)
alias(
name = "bazel",
actual = "{bazel_bin}",
visibility = ["//visibility:public"],
)
""".format(
sh_binary_bzl = repr(str(Label("@rules_shell//shell:sh_binary.bzl"))),
bazel_bin = sh_binary_name,
bazel_binary = link_name,
),
)
local_bazel_import = repository_rule(
implementation = _local_bazel_import_impl,
environ = ["PATH"],
)