platforms/tests/BUILD

22 lines
643 B
Python
Raw Permalink Normal View History

load("//:version.bzl", "version")
package(default_visibility = ["//visibility:private"])
# This is a quick hack to make sure that version.bzl agrees with MODULE.bazel
# It only works from Linux, but that is sufficient, becuase we do a presubmit
# run on linux, so we will still catch a mismatch.
genrule(
name = "versions_match",
2023-02-09 15:56:04 +00:00
outs = ["found_it"],
2023-02-09 15:46:46 +00:00
cmd = ";\n".join([
"""echo version: %s""" % version,
"""grep 'version = "%s",' $(location //:MODULE.bazel) >$(location :found_it)""" % version,
]),
target_compatible_with = [
"//os:linux",
],
2023-02-09 15:56:04 +00:00
tools = [
"//:MODULE.bazel",
],
)