mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-24 12:27:18 +00:00
a7361cd5ab
* Add manual tags to oci images. This reduces build times for build and test in CI. * Ran buildifier on tools dir
20 lines
516 B
Python
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"],
|
|
)
|