prysm-pulse/tools/target_migration.bzl
Preston Van Loon a7361cd5ab
Docker: Add "manual" build tag to reduce build times in CI (#12967)
* Add manual tags to oci images. This reduces build times for build and test in CI.

* Ran buildifier on tools dir
2023-09-28 17:49:26 +00:00

9 lines
288 B
Python

def moved_targets(targets, new_package):
for target in targets:
native.alias(
name = target[1:],
actual = new_package + target,
deprecation = "This target has moved to %s%s" % (new_package, target),
tags = ["manual"],
)