mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-26 13:18:57 +00:00
938a038c42
* Fixes * More manual tags Co-authored-by: prylabs-bulldozer[bot] <58059840+prylabs-bulldozer[bot]@users.noreply.github.com>
151 lines
4.7 KiB
Python
151 lines
4.7 KiB
Python
load("@prysm//tools/go:def.bzl", "go_library", "go_test")
|
|
load("@io_bazel_rules_go//go:def.bzl", "go_binary")
|
|
load("@io_bazel_rules_docker//go:image.bzl", "go_image")
|
|
load("@io_bazel_rules_docker//container:container.bzl", "container_bundle", "container_image")
|
|
load("//tools:go_image.bzl", "go_image_alpine", "go_image_debug")
|
|
load("@io_bazel_rules_docker//contrib:push-all.bzl", "docker_push")
|
|
|
|
go_library(
|
|
name = "go_default_library",
|
|
srcs = [
|
|
"log.go",
|
|
"main.go",
|
|
"usage.go",
|
|
],
|
|
importpath = "github.com/prysmaticlabs/prysm/cmd/validator",
|
|
visibility = ["//validator:__subpackages__"],
|
|
deps = [
|
|
"//cmd/validator/accounts:go_default_library",
|
|
"//cmd/validator/db:go_default_library",
|
|
"//cmd/validator/flags:go_default_library",
|
|
"//cmd/validator/slashing-protection:go_default_library",
|
|
"//cmd/validator/wallet:go_default_library",
|
|
"//shared/cmd:go_default_library",
|
|
"//shared/debug:go_default_library",
|
|
"//shared/featureconfig:go_default_library",
|
|
"//shared/fileutil:go_default_library",
|
|
"//shared/journald:go_default_library",
|
|
"//shared/logutil:go_default_library",
|
|
"//shared/maxprocs:go_default_library",
|
|
"//shared/tos:go_default_library",
|
|
"//shared/version:go_default_library",
|
|
"//validator/node:go_default_library",
|
|
"@com_github_joonix_log//:go_default_library",
|
|
"@com_github_sirupsen_logrus//:go_default_library",
|
|
"@com_github_urfave_cli_v2//:go_default_library",
|
|
"@com_github_x_cray_logrus_prefixed_formatter//:go_default_library",
|
|
],
|
|
)
|
|
|
|
go_image(
|
|
name = "image",
|
|
base = select({
|
|
"//tools:base_image_alpine": "//tools:alpine_cc_image",
|
|
"//tools:base_image_cc": "//tools:cc_image",
|
|
"//conditions:default": "//tools:cc_image",
|
|
}),
|
|
binary = ":validator",
|
|
tags = ["manual"],
|
|
visibility = ["//validator:__pkg__"],
|
|
)
|
|
|
|
container_image(
|
|
name = "image_with_creation_time",
|
|
base = "image",
|
|
stamp = True,
|
|
tags = ["manual"],
|
|
visibility = ["//validator:__pkg__"],
|
|
)
|
|
|
|
container_bundle(
|
|
name = "image_bundle",
|
|
images = {
|
|
"gcr.io/prysmaticlabs/prysm/validator:latest": ":image_with_creation_time",
|
|
"gcr.io/prysmaticlabs/prysm/validator:{DOCKER_TAG}": ":image_with_creation_time",
|
|
"index.docker.io/prysmaticlabs/prysm-validator:latest": ":image_with_creation_time",
|
|
"index.docker.io/prysmaticlabs/prysm-validator:{DOCKER_TAG}": ":image_with_creation_time",
|
|
},
|
|
tags = ["manual"],
|
|
visibility = ["//validator:__pkg__"],
|
|
)
|
|
|
|
go_image_debug(
|
|
name = "image_debug",
|
|
image = ":image",
|
|
tags = ["manual"],
|
|
visibility = ["//validator:__pkg__"],
|
|
)
|
|
|
|
container_bundle(
|
|
name = "image_bundle_debug",
|
|
images = {
|
|
"gcr.io/prysmaticlabs/prysm/validator:latest-debug": ":image_debug",
|
|
"gcr.io/prysmaticlabs/prysm/validator:{DOCKER_TAG}-debug": ":image_debug",
|
|
"index.docker.io/prysmaticlabs/prysm-validator:latest-debug": ":image_debug",
|
|
"index.docker.io/prysmaticlabs/prysm-validator:{DOCKER_TAG}-debug": ":image_debug",
|
|
},
|
|
tags = ["manual"],
|
|
visibility = ["//validator:__pkg__"],
|
|
)
|
|
|
|
go_image_alpine(
|
|
name = "image_alpine",
|
|
image = ":image",
|
|
tags = ["manual"],
|
|
visibility = ["//validator:__pkg__"],
|
|
)
|
|
|
|
container_bundle(
|
|
name = "image_bundle_alpine",
|
|
images = {
|
|
"gcr.io/prysmaticlabs/prysm/validator:latest-alpine": ":image_alpine",
|
|
"gcr.io/prysmaticlabs/prysm/validator:{DOCKER_TAG}-alpine": ":image_alpine",
|
|
"index.docker.io/prysmaticlabs/prysm-validator:latest-alpine": ":image_alpine",
|
|
"index.docker.io/prysmaticlabs/prysm-validator:{DOCKER_TAG}-alpine": ":image_alpine",
|
|
},
|
|
tags = ["manual"],
|
|
visibility = ["//validator:__pkg__"],
|
|
)
|
|
|
|
docker_push(
|
|
name = "push_images",
|
|
bundle = ":image_bundle",
|
|
tags = ["manual"],
|
|
visibility = ["//validator:__pkg__"],
|
|
)
|
|
|
|
docker_push(
|
|
name = "push_images_debug",
|
|
bundle = ":image_bundle_debug",
|
|
tags = ["manual"],
|
|
visibility = ["//validator:__pkg__"],
|
|
)
|
|
|
|
docker_push(
|
|
name = "push_images_alpine",
|
|
bundle = ":image_bundle_alpine",
|
|
tags = ["manual"],
|
|
visibility = ["//validator:__pkg__"],
|
|
)
|
|
|
|
go_binary(
|
|
name = "validator",
|
|
embed = [":go_default_library"],
|
|
pure = "off", # Enabled unless there is a valid reason to include cgo dep.
|
|
visibility = [
|
|
"//endtoend:__pkg__",
|
|
"//validator:__subpackages__",
|
|
],
|
|
)
|
|
|
|
go_test(
|
|
name = "go_default_test",
|
|
srcs = ["usage_test.go"],
|
|
embed = [":go_default_library"],
|
|
visibility = ["//validator:__pkg__"],
|
|
deps = [
|
|
"//shared/featureconfig:go_default_library",
|
|
"@com_github_urfave_cli_v2//:go_default_library",
|
|
],
|
|
)
|