mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-29 06:37:17 +00:00
d4c954648c
* write file and mkdirall analyzers * include analyzer in build bazel * comments to the single entrypoint and fix validator references * enforce 600 for files, 700 for dirs * pass validator tests * add to nogo * remove references * beaconfuzz * docker img * fix up kv issue * mkdir if not exists * radek comments * final comments * Try to fix file problem Co-authored-by: Ivan Martinez <ivanthegreatdev@gmail.com>
30 lines
918 B
Python
30 lines
918 B
Python
load("@prysm//tools/go:def.bzl", "go_library")
|
|
load("@io_bazel_rules_go//go:def.bzl", "go_test")
|
|
|
|
go_library(
|
|
name = "go_default_library",
|
|
srcs = ["tos.go"],
|
|
importpath = "github.com/prysmaticlabs/prysm/shared/tos",
|
|
visibility = ["//visibility:public"],
|
|
deps = [
|
|
"//shared/cmd:go_default_library",
|
|
"//shared/fileutil:go_default_library",
|
|
"//shared/promptutil:go_default_library",
|
|
"@com_github_logrusorgru_aurora//:go_default_library",
|
|
"@com_github_sirupsen_logrus//:go_default_library",
|
|
"@com_github_urfave_cli_v2//:go_default_library",
|
|
],
|
|
)
|
|
|
|
go_test(
|
|
name = "go_default_test",
|
|
size = "small",
|
|
srcs = ["tos_test.go"],
|
|
embed = [":go_default_library"],
|
|
deps = [
|
|
"//shared/cmd:go_default_library",
|
|
"//shared/testutil/require:go_default_library",
|
|
"@com_github_urfave_cli_v2//:go_default_library",
|
|
],
|
|
)
|