mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-25 21:07:18 +00:00
4a4316eb95
* touch readme * whatever * Add docker_push to actually push the images * revert readme * revert pb.go
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_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/contract-addr",
|
|
visibility = ["//visibility:private"],
|
|
deps = ["@org_uber_go_automaxprocs//:go_default_library"],
|
|
)
|
|
|
|
go_binary(
|
|
name = "contract-addr",
|
|
embed = [":go_default_library"],
|
|
visibility = ["//visibility:public"],
|
|
)
|
|
|
|
go_image(
|
|
name = "image",
|
|
srcs = ["main.go"],
|
|
goarch = "amd64",
|
|
goos = "linux",
|
|
importpath = "github.com/prysmaticlabs/prysm/tools/contract-addr",
|
|
pure = "on",
|
|
race = "off",
|
|
static = "on",
|
|
tags = ["manual"],
|
|
visibility = ["//visibility:private"],
|
|
deps = ["@org_uber_go_automaxprocs//:go_default_library"],
|
|
)
|
|
|
|
container_bundle(
|
|
name = "image_bundle",
|
|
images = {
|
|
"gcr.io/prysmaticlabs/prysm/contract-addr:latest": ":image",
|
|
"gcr.io/prysmaticlabs/prysm/contract-addr:{DOCKER_TAG}": ":image",
|
|
},
|
|
tags = ["manual"],
|
|
)
|
|
|
|
docker_push(
|
|
name = "push_images",
|
|
bundle = ":image_bundle",
|
|
tags = ["manual"],
|
|
)
|