1

downgrade bazel to 3.7.0

that's our target for now.
This commit is contained in:
Motiejus Jakštys
2021-06-28 12:52:20 +03:00
parent f094bdf879
commit be168480a7
5 changed files with 16 additions and 7 deletions

View File

@@ -4,7 +4,8 @@ package(
default_visibility = ["//visibility:public"],
)
# TODO(motiejus) use json.encode() and unquote these variables with bazel 4+.
zig_build_macro(
absolute_path = {absolute_path},
zig_include_root = {zig_include_root},
absolute_path = "{absolute_path}",
zig_include_root = "{zig_include_root}",
)

View File

@@ -157,14 +157,13 @@ def _zig_repository_impl(repository_ctx):
ZIG_TOOL_WRAPPER.format(zig = str(repository_ctx.path("zig")), zig_tool = zig_tool),
)
absolute_path = json.encode(str(repository_ctx.path("")))
repository_ctx.template(
"BUILD.bazel",
Label("//toolchain:BUILD.sdk.bazel"),
executable = False,
substitutions = {
"{absolute_path}": absolute_path,
"{zig_include_root}": json.encode(zig_include_root),
"{absolute_path}": str(repository_ctx.path("")),
"{zig_include_root}": zig_include_root,
},
)