mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-26 05:17:22 +00:00
2ecb905ae5
* add all changes in * fix issues * fix build * remove curve check * fix tool * add test * add tidy * fmt Co-authored-by: Radosław Kapka <rkapka@wp.pl> Co-authored-by: Raul Jordan <raul@prysmaticlabs.com> Co-authored-by: prylabs-bulldozer[bot] <58059840+prylabs-bulldozer[bot]@users.noreply.github.com>
51 lines
1.5 KiB
Python
51 lines
1.5 KiB
Python
load("@prysm//tools/go:def.bzl", "go_library")
|
|
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")
|
|
load("@io_bazel_rules_docker//contrib:push-all.bzl", "docker_push")
|
|
|
|
go_library(
|
|
name = "go_default_library",
|
|
srcs = ["main.go"],
|
|
importpath = "github.com/prysmaticlabs/prysm/tools/enr-calculator",
|
|
visibility = ["//visibility:private"],
|
|
deps = [
|
|
"//crypto/ecdsa:go_default_library",
|
|
"//io/file:go_default_library",
|
|
"//runtime/maxprocs:go_default_library",
|
|
"@com_github_ethereum_go_ethereum//p2p/enode:go_default_library",
|
|
"@com_github_ethereum_go_ethereum//p2p/enr:go_default_library",
|
|
"@com_github_libp2p_go_libp2p_core//crypto:go_default_library",
|
|
"@com_github_sirupsen_logrus//:go_default_library",
|
|
],
|
|
)
|
|
|
|
go_binary(
|
|
name = "enr-calculator",
|
|
embed = [":go_default_library"],
|
|
visibility = ["//visibility:public"],
|
|
)
|
|
|
|
go_image(
|
|
name = "image",
|
|
base = "//tools:go_image",
|
|
binary = "enr-calculator",
|
|
tags = ["manual"],
|
|
visibility = ["//visibility:private"],
|
|
)
|
|
|
|
container_bundle(
|
|
name = "image_bundle",
|
|
images = {
|
|
"gcr.io/prysmaticlabs/prysm/enr-calculator:latest": ":image",
|
|
"gcr.io/prysmaticlabs/prysm/enr-calculator:{DOCKER_TAG}": ":image",
|
|
},
|
|
tags = ["manual"],
|
|
)
|
|
|
|
docker_push(
|
|
name = "push_images",
|
|
bundle = ":image_bundle",
|
|
tags = ["manual"],
|
|
)
|