prysm-pulse/tools/beacon-fuzz/BUILD.bazel
Preston Van Loon a7361cd5ab
Docker: Add "manual" build tag to reduce build times in CI (#12967)
* Add manual tags to oci images. This reduces build times for build and test in CI.

* Ran buildifier on tools dir
2023-09-28 17:49:26 +00:00

20 lines
516 B
Python

load("@io_bazel_rules_go//go:def.bzl", "go_binary", "go_library")
# gazelle:ignore Prevent this tool from using @prysm//tools/go:def.bzl go_library.
go_library(
name = "go_default_library",
srcs = ["main.go"],
importpath = "github.com/prysmaticlabs/prysm/v4/tools/beacon-fuzz",
visibility = ["//visibility:private"],
deps = [
"//io/file:go_default_library",
],
)
go_binary(
name = "beacon-fuzz",
embed = [":go_default_library"],
visibility = ["//visibility:public"],
)