mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-26 05:17:22 +00:00
cebb62997d
* Add AFL third_party libraries * add beacon state fuzzing, add afl fuzz bundle * rm fuzzing engine * fix and lint * Check for array out of bounds when calculating proposer delta * failing test * fix * Checkpoint progress * Add requirement that inclusion distance is not zero, add regression test * No need for HTR since that is covered in process slots * Removing some fuzzit logic, old fuzz tests * Add ssz encoder test and fix * Fuzzing checkpoint, adding fuzzing to the p2p layer * ignore some libfuzzer files * Full testing of p2p processing of blocks, with some mocked stuff * use tmpdir and always process blocks * use checkptr * Update ethereumapis * go mod tidy * benchmarks for ferran's fast ssz hash tree root * Update fastssz * fmt * gaz * goimports * Fix * fix ethereumapis * fix again * kafka * fix gen file * fix compute signing root * gofmt * checkpoint progress * progress * checkpoint * updates * updates * merge fix * WIP * merge * fix build * fix merge related issues * cleanup * revert unrelated * lint * lint * lint * manual tags for fuzz * Commentary on upload script * some import fixes, but not all * fix //fuzz:fuzz_tests * rm unused test * update generated ssz * Set // +build libfuzzer * remove debug code * A bit of refactoring ot explain why there is a committee_disabled file Co-authored-by: prylabs-bulldozer[bot] <58059840+prylabs-bulldozer[bot]@users.noreply.github.com>
48 lines
1.3 KiB
Python
48 lines
1.3 KiB
Python
load("@io_bazel_rules_go//go:def.bzl", "go_library", "go_test")
|
|
|
|
# Build with --define=kafka_enabled=false to exclude kafka wrapper.
|
|
config_setting(
|
|
name = "kafka_disabled",
|
|
values = {"define": "kafka_enabled=false"},
|
|
)
|
|
|
|
# gazelle:ignore db.go db_kafka_wrapped.go
|
|
go_library(
|
|
name = "go_default_library",
|
|
srcs = [
|
|
"alias.go",
|
|
"http_backup_handler.go",
|
|
] + select({
|
|
":kafka_disabled": [
|
|
"db.go",
|
|
],
|
|
"//conditions:default": [
|
|
"db_kafka_wrapped.go",
|
|
],
|
|
}),
|
|
importpath = "github.com/prysmaticlabs/prysm/beacon-chain/db",
|
|
visibility = [
|
|
"//beacon-chain:__subpackages__",
|
|
"//fuzz:__pkg__",
|
|
"//tools:__subpackages__",
|
|
],
|
|
deps = [
|
|
"//beacon-chain/cache:go_default_library",
|
|
"//beacon-chain/db/iface:go_default_library",
|
|
"//beacon-chain/db/kv:go_default_library",
|
|
"@com_github_sirupsen_logrus//:go_default_library",
|
|
] + select({
|
|
"//conditions:default": [
|
|
"//beacon-chain/db/kafka:go_default_library",
|
|
],
|
|
":kafka_disabled": [],
|
|
}),
|
|
)
|
|
|
|
go_test(
|
|
name = "go_default_test",
|
|
srcs = ["db_test.go"],
|
|
embed = [":go_default_library"],
|
|
deps = ["//beacon-chain/db/kv:go_default_library"],
|
|
)
|