mirror of
https://github.com/OffchainLabs/prysm.git
synced 2026-01-09 15:37:56 -05:00
* Add eth1 balance monitoring * lint * lint * priority * lint * use value in alerts * fix beacon-chain service * working on stability * more yaml * add more alerts to the finality alerts * add nother header to ignore * extend requirement time for low balance * remove old flag * remove extra flag * feedback to use consistent flag
48 lines
1.3 KiB
Python
48 lines
1.3 KiB
Python
load("@io_bazel_rules_go//go:def.bzl", "go_binary", "go_library")
|
|
load("@io_bazel_rules_docker//go:image.bzl", "go_image")
|
|
load("@io_bazel_rules_docker//container:container.bzl", "container_push")
|
|
|
|
go_library(
|
|
name = "go_default_library",
|
|
srcs = ["main.go"],
|
|
importpath = "github.com/prysmaticlabs/prysm/tools/eth1exporter",
|
|
visibility = ["//visibility:private"],
|
|
deps = [
|
|
"@com_github_ethereum_go_ethereum//common:go_default_library",
|
|
"@com_github_ethereum_go_ethereum//ethclient:go_default_library",
|
|
],
|
|
)
|
|
|
|
go_binary(
|
|
name = "eth1exporter",
|
|
embed = [":go_default_library"],
|
|
visibility = ["//visibility:public"],
|
|
)
|
|
|
|
go_image(
|
|
name = "image",
|
|
srcs = ["main.go"],
|
|
goarch = "amd64",
|
|
goos = "linux",
|
|
importpath = "github.com/prysmaticlabs/prysm/tools/eth1exporter",
|
|
race = "off",
|
|
static = "off",
|
|
tags = ["manual"],
|
|
visibility = ["//visibility:private"],
|
|
deps = [
|
|
"@com_github_ethereum_go_ethereum//common:go_default_library",
|
|
"@com_github_ethereum_go_ethereum//ethclient:go_default_library",
|
|
],
|
|
)
|
|
|
|
container_push(
|
|
name = "push_image",
|
|
format = "Docker",
|
|
image = ":image",
|
|
registry = "gcr.io",
|
|
repository = "prysmaticlabs/eth1monitor",
|
|
tag = "latest",
|
|
tags = ["manual"],
|
|
visibility = ["//visibility:private"],
|
|
)
|