Mark all build/ targets as manual
Signed-off-by: James Munnelly <james@munnelly.eu>
This commit is contained in:
parent
b48988ffcf
commit
6a2edb8f9b
@ -82,6 +82,7 @@ release_filegroup(
|
||||
name = "docker-artifacts",
|
||||
srcs = [":%s.tar" % binary for binary in DOCKERIZED_BINARIES.keys()] +
|
||||
[":%s.docker_tag" % binary for binary in DOCKERIZED_BINARIES.keys()],
|
||||
tags = ["manual"],
|
||||
)
|
||||
|
||||
filegroup(
|
||||
|
||||
@ -85,6 +85,7 @@ def multi_arch_container(
|
||||
)
|
||||
native.alias(
|
||||
name = name,
|
||||
tags = tags,
|
||||
actual = select({
|
||||
go_platform_constraint(os = "linux", arch = arch): "%s-%s" % (name, arch)
|
||||
for arch in architectures
|
||||
@ -93,6 +94,7 @@ def multi_arch_container(
|
||||
native.genrule(
|
||||
name = "gen_%s.tar" % name,
|
||||
outs = ["%s.tar" % name],
|
||||
tags = tags,
|
||||
srcs = select({
|
||||
go_platform_constraint(os = "linux", arch = arch): ["%s-%s.tar" % (name, arch)]
|
||||
for arch in architectures
|
||||
@ -138,6 +140,7 @@ def multi_arch_container_push(
|
||||
|
||||
native.alias(
|
||||
name = name,
|
||||
tags = tags,
|
||||
actual = select({
|
||||
go_platform_constraint(os = "linux", arch = arch): "push-%s-%s" % (name, arch)
|
||||
for arch in architectures
|
||||
@ -146,6 +149,7 @@ def multi_arch_container_push(
|
||||
|
||||
docker_push(
|
||||
name = "push-%s" % name,
|
||||
tags = tags,
|
||||
bundle = select({
|
||||
go_platform_constraint(os = "linux", arch = arch): "push-%s-%s" % (name, arch)
|
||||
for arch in architectures
|
||||
|
||||
@ -30,6 +30,10 @@ release_filegroup(
|
||||
":cert-manager-test-{OS}-{ARCH}.tar.gz",
|
||||
],
|
||||
),
|
||||
tags = [
|
||||
"manual",
|
||||
"no-cache",
|
||||
],
|
||||
)
|
||||
|
||||
filegroup(
|
||||
@ -115,7 +119,10 @@ pkg_tar(
|
||||
pkg_tar(
|
||||
name = "cert-manager-manifests",
|
||||
extension = "tar.gz",
|
||||
tags = ["no-cache"],
|
||||
tags = [
|
||||
"manual",
|
||||
"no-cache",
|
||||
],
|
||||
deps = [
|
||||
"//deploy:manifests",
|
||||
],
|
||||
|
||||
Loading…
Reference in New Issue
Block a user