mirror of
https://github.com/OffchainLabs/prysm.git
synced 2026-01-09 07:28:06 -05:00
* Update rules_go * go 1.15 * try with v0.24.2 * Update Mac OS X SDK * gaz * update SDK in toolchain config * -I flag * another -I flag * Update rules_go, gazelle, bazel version * regen, update rules_docker * Revert "another -I flag" This reverts commit9255133d99. * Revert "-I flag" This reverts commit2954a41d76. * giving up * Use OS X 10.12 * Use OS X 10.12 * Revert "Use OS X 10.12" This reverts commit4f60d5cb80. * Revert "Use OS X 10.12" This reverts commita79177fab7. * osx toolchain tweaks necessary to work with 10.15 mac sdk * Update docker image, regen * gaz * test using custom image * Revert "test using custom image" This reverts commit95b8666810. * explicit go version * Clean up docker image rules with new definitions. gazelle * please the linter * Update protobuf compiler to 3.13.0, run gazelle * Update gazelle to fix empty build files. https://github.com/bazelbuild/bazel-gazelle/pull/926 * update skylib * fix herumi fuzz build * remove comment from tools/cross-toolchain/regenerate.sh Co-authored-by: rkapka <rkapka@wp.pl> Co-authored-by: SuburbanDad <gts.mobile@gmail.com> Co-authored-by: prylabs-bulldozer[bot] <58059840+prylabs-bulldozer[bot]@users.noreply.github.com>
65 lines
1.8 KiB
Python
65 lines
1.8 KiB
Python
# gazelle:ignore
|
|
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")
|
|
|
|
IMPORT_PATH = "github.com/prysmaticlabs/prysm/tools/faucet"
|
|
|
|
SRCS = [
|
|
"main.go",
|
|
"server.go",
|
|
]
|
|
|
|
DEPS = [
|
|
"//proto/faucet:faucet_go_proto",
|
|
"//shared/timeutils:go_default_library",
|
|
"//shared/maxprocs:go_default_library",
|
|
"@org_golang_google_grpc//:go_default_library",
|
|
"@org_golang_google_grpc//peer:go_default_library",
|
|
"@org_golang_google_grpc//metadata:go_default_library",
|
|
"@org_golang_google_grpc//reflection:go_default_library",
|
|
"@com_github_prestonvanloon_go_recaptcha//:go_default_library",
|
|
"@com_github_ethereum_go_ethereum//ethclient:go_default_library",
|
|
"@com_github_ethereum_go_ethereum//common:go_default_library",
|
|
"@com_github_ethereum_go_ethereum//params:go_default_library",
|
|
"@com_github_ethereum_go_ethereum//crypto:go_default_library",
|
|
"@com_github_ethereum_go_ethereum//core/types:go_default_library",
|
|
]
|
|
|
|
go_library(
|
|
name = "go_default_library",
|
|
srcs = SRCS,
|
|
importpath = IMPORT_PATH,
|
|
visibility = ["//visibility:private"],
|
|
deps = DEPS,
|
|
)
|
|
|
|
go_binary(
|
|
name = "faucet",
|
|
embed = [":go_default_library"],
|
|
visibility = ["//visibility:public"],
|
|
)
|
|
|
|
go_image(
|
|
name = "image",
|
|
base = "//tools:go_image",
|
|
binary = ":faucet",
|
|
tags = ["manual"],
|
|
)
|
|
|
|
container_bundle(
|
|
name = "image_bundle",
|
|
images = {
|
|
"gcr.io/prysmaticlabs/prysm/faucet:latest": ":image",
|
|
"gcr.io/prysmaticlabs/prysm/faucet:{DOCKER_TAG}": ":image",
|
|
},
|
|
tags = ["manual"],
|
|
)
|
|
|
|
docker_push(
|
|
name = "push_images",
|
|
bundle = ":image_bundle",
|
|
tags = ["manual"],
|
|
)
|