mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-05 01:04:29 +00:00
65f71b3a48
* `subscribeStaticWithSubnets`: Fix docstring. * `buildOptions`: Avoid `options` mutations. * `dv5Cfg`: Avoid mutation. * `RefreshENR`: Use default for all but Phase0. * `udp4`, `udp6`: Create enum. * `p2p.Config`: `BootstrapNodeAddr`==> `BootstrapNodeAddrs`. * `p2p.Config`: `Discv5BootStrapAddr` ==> `Discv5BootStrapAddrs`. * `TestScorers_BadResponses_Score`: Improve. * `BeaconNode`: Avoid mutation. * `TestStore_TrustedPeers`: Remove blankline. * Remove blank identifiers. * `privKey`: Keep the majority of code with low indentation. * `P2PPreregistration`: Return error instead of fatal log. * `parseBootStrapAddrs` => `ParseBootStrapAddrs` (export) * `p2p.Config`: Remove `BootstrapNodeAddrs`. * `NewService`: Avoid mutation when possible. * `Service`: Remove blank identifier. * `buildOptions`: Avoid `log.Fatalf` (make deepsource happy). * `registerGRPCGateway`: Use `net.JoinHostPort` (make deepsource happy). * `registerBuilderService`: Make deepsource happy. * `scorers`: Add `NoLock` suffix (make deepsource happy). * `scorerr`: Add some `NoLock`suffixes (making deepsource happy). * `discovery_test.go`. Remove init. Rationale: `rand.Seed` is deprecated: As of Go 1.20 there is no reason to call Seed with a random value. Programs that call Seed with a known value to get a specific sequence of results should use New(NewSource(seed)) to obtain a local random generator. This makes deepsource happy as well. * `createListener`: Reduce cyclomatic complexity (make deepsource happy). * `startDB`: Reduce cyclomatic complexity (make deepsource happy). * `main`: Log a FATAL on error. This way, the error message is very readable. Before this commit, the error message is the less readable message in the logs. * `New`: Reduce cyclomatic complexity (make deepsource happy). * `main`: Avoid `App` mutation, and make deepsource happy. * Update beacon-chain/node/node.go Co-authored-by: Sammy Rosso <15244892+saolyn@users.noreply.github.com> * `bootnodes` ==> `BootNodes` (Fix PR comment). * Remove duplicate `configureFastSSZHashingAlgorithm` since already done in `configureBeacon`. (Fix PR comment) * Add `TestCreateLocalNode`. (PR comment fix.) * `startModules` ==> `startBaseServices (Fix PR comment). * `buildOptions` return errors consistently. * `New`: Change ordering. --------- Co-authored-by: Sammy Rosso <15244892+saolyn@users.noreply.github.com>
83 lines
2.9 KiB
Python
83 lines
2.9 KiB
Python
load("@prysm//tools/go:def.bzl", "go_library", "go_test")
|
|
load("@io_bazel_rules_go//go:def.bzl", "go_binary")
|
|
load("//tools:prysm_image.bzl", "prysm_image_upload")
|
|
|
|
go_library(
|
|
name = "go_default_library",
|
|
srcs = [
|
|
"log.go",
|
|
"main.go",
|
|
"usage.go",
|
|
],
|
|
importpath = "github.com/prysmaticlabs/prysm/v5/cmd/beacon-chain",
|
|
visibility = ["//beacon-chain:__subpackages__"],
|
|
deps = [
|
|
"//beacon-chain/builder:go_default_library",
|
|
"//beacon-chain/node:go_default_library",
|
|
"//cmd:go_default_library",
|
|
"//cmd/beacon-chain/blockchain:go_default_library",
|
|
"//cmd/beacon-chain/db:go_default_library",
|
|
"//cmd/beacon-chain/execution:go_default_library",
|
|
"//cmd/beacon-chain/flags:go_default_library",
|
|
"//cmd/beacon-chain/jwt:go_default_library",
|
|
"//cmd/beacon-chain/storage:go_default_library",
|
|
"//cmd/beacon-chain/sync/backfill:go_default_library",
|
|
"//cmd/beacon-chain/sync/backfill/flags:go_default_library",
|
|
"//cmd/beacon-chain/sync/checkpoint:go_default_library",
|
|
"//cmd/beacon-chain/sync/genesis:go_default_library",
|
|
"//config/features:go_default_library",
|
|
"//io/file:go_default_library",
|
|
"//io/logs:go_default_library",
|
|
"//monitoring/journald:go_default_library",
|
|
"//runtime/debug:go_default_library",
|
|
"//runtime/fdlimits:go_default_library",
|
|
"//runtime/logging/logrus-prefixed-formatter:go_default_library",
|
|
"//runtime/maxprocs:go_default_library",
|
|
"//runtime/tos:go_default_library",
|
|
"//runtime/version:go_default_library",
|
|
"@com_github_ethereum_go_ethereum//log:go_default_library",
|
|
"@com_github_ipfs_go_log_v2//:go_default_library",
|
|
"@com_github_joonix_log//:go_default_library",
|
|
"@com_github_pkg_errors//:go_default_library",
|
|
"@com_github_sirupsen_logrus//:go_default_library",
|
|
"@com_github_urfave_cli_v2//:go_default_library",
|
|
],
|
|
)
|
|
|
|
go_binary(
|
|
name = "beacon-chain",
|
|
embed = [":go_default_library"],
|
|
pgoprofile = select({
|
|
"//:pgo_enabled": "pprof.beacon-chain.samples.cpu.pb.gz",
|
|
"//conditions:default": None,
|
|
}),
|
|
visibility = [
|
|
"//beacon-chain:__subpackages__",
|
|
"//testing/endtoend:__pkg__",
|
|
],
|
|
)
|
|
|
|
go_test(
|
|
name = "go_default_test",
|
|
size = "small",
|
|
srcs = ["usage_test.go"],
|
|
embed = [":go_default_library"],
|
|
visibility = ["//beacon-chain:__pkg__"],
|
|
deps = [
|
|
"//config/features:go_default_library",
|
|
"@com_github_urfave_cli_v2//:go_default_library",
|
|
],
|
|
)
|
|
|
|
prysm_image_upload(
|
|
name = "push_images",
|
|
binary = ":beacon-chain",
|
|
entrypoint = ["/beacon-chain"],
|
|
repository = "gcr.io/prysmaticlabs/prysm/beacon-chain",
|
|
symlinks = {
|
|
# Backwards compatibility for images that depended on the old filepath.
|
|
"/app/cmd/beacon-chain/beacon-chain": "/beacon-chain",
|
|
},
|
|
tags = ["manual"],
|
|
)
|