mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-06 17:52:18 +00:00
![Preston Van Loon](/assets/img/avatar_default.png)
* Add bazel-zig-cc for a hermetic cc toolchain * gazelle * Remove llvm * remove wl * Add new URLs for renamed repo * gazelle * Update to v2.0.0-rc1 * bump to rc2 * Proof of concept multi-arch containers for beacon-chain * TODO and gaz * Refactor to starlark macro. Use a version of bash that actually works * progress * gaz * multirun to use multiple repositories, but doesn't work with tag stamping * Revert "multirun to use multiple repositories, but doesn't work with tag stamping" This reverts commit 93afa76f65daeba9426c3d714dabf94410fa3a0c. * Add targets for all supported docker images and temporarily set the repository to prysm-dev for testing * use a temporary fix to see if it works on buildkite * Revert "use a temporary fix to see if it works on buildkite" This reverts commit ddc79283caa6b39c8aff4c62772728832d0dfe64. * testing a cURL fix * try fix with my fix * Revert "try fix with my fix" This reverts commit bb7521bf4712abb6779bbf3132e64911b751db65. * Revert "testing a cURL fix" This reverts commit 8a4782110f8853cb7278baf507621bd6684572b1. * try tip of main branch for rules_oci * update to 1.2.0 * Update rules_oci to v1.3.0 * Update rule_oci to 1.3.4 * Disable experimental_remote_downloader * Remove extra zig bazelrc * Move image deps to its own file * PR feedback --------- Co-authored-by: prylabs-bulldozer[bot] <58059840+prylabs-bulldozer[bot]@users.noreply.github.com>
136 lines
4.3 KiB
Python
136 lines
4.3 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_debug")
|
|
load("@io_bazel_rules_docker//contrib:push-all.bzl", "docker_push")
|
|
load("//tools:prysm_image.bzl", "prysm_image_upload")
|
|
|
|
go_library(
|
|
name = "go_default_library",
|
|
srcs = [
|
|
"log.go",
|
|
"main.go",
|
|
"usage.go",
|
|
],
|
|
importpath = "github.com/prysmaticlabs/prysm/v4/cmd/validator",
|
|
visibility = ["//validator:__subpackages__"],
|
|
deps = [
|
|
"//cmd:go_default_library",
|
|
"//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",
|
|
"//cmd/validator/web:go_default_library",
|
|
"//config/features:go_default_library",
|
|
"//io/file:go_default_library",
|
|
"//io/logs:go_default_library",
|
|
"//monitoring/journald:go_default_library",
|
|
"//runtime/debug:go_default_library",
|
|
"//runtime/logging/logrus-prefixed-formatter:go_default_library",
|
|
"//runtime/maxprocs:go_default_library",
|
|
"//runtime/tos:go_default_library",
|
|
"//runtime/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",
|
|
],
|
|
)
|
|
|
|
go_image(
|
|
name = "image",
|
|
base = select({
|
|
"//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",
|
|
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__"],
|
|
)
|
|
|
|
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__"],
|
|
)
|
|
|
|
go_binary(
|
|
name = "validator",
|
|
embed = [":go_default_library"],
|
|
pure = "off", # Enabled unless there is a valid reason to include cgo dep.
|
|
visibility = [
|
|
"//testing/endtoend:__pkg__",
|
|
"//validator:__subpackages__",
|
|
],
|
|
)
|
|
|
|
go_test(
|
|
name = "go_default_test",
|
|
srcs = ["usage_test.go"],
|
|
embed = [":go_default_library"],
|
|
visibility = ["//validator:__pkg__"],
|
|
deps = [
|
|
"//config/features:go_default_library",
|
|
"@com_github_urfave_cli_v2//:go_default_library",
|
|
],
|
|
)
|
|
|
|
prysm_image_upload(
|
|
name = "push_oci_image",
|
|
binary = ":validator",
|
|
entrypoint = ["/validator"],
|
|
repository = "gcr.io/prylabs-dev/prysm/validator",
|
|
symlinks = {
|
|
# Backwards compatiability for images that depended on the old filepath.
|
|
"/app/cmd/validator/validator": "/validator",
|
|
},
|
|
)
|