2
0
Fork 0
mirror of https://github.com/bazelbuild/platforms synced 2024-11-27 02:43:23 +00:00
platforms/tests/BUILD
2023-02-09 10:56:04 -05:00

22 lines
640 B
Python

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 linux, so we will still catch a mismatch.
genrule(
name = "versions_match",
outs = ["found_it"],
cmd = ";\n".join([
"""echo version: %s""" % version,
"""grep 'version = "%s",' $(location //:MODULE.bazel) >$(location :found_it)""" % version,
]),
target_compatible_with = [
"//os:linux",
],
tools = [
"//:MODULE.bazel",
],
)