mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-22 03:30:35 +00:00
fuzz: build with -tags=fuzz,blst_disabled (#10618)
This commit is contained in:
parent
51581e9b6e
commit
f763b35494
5
.github/workflows/go.yml
vendored
5
.github/workflows/go.yml
vendored
@ -89,6 +89,11 @@ jobs:
|
||||
# Use blst tag to allow go and bazel builds for blst.
|
||||
run: go build -v ./...
|
||||
|
||||
# fuzz and blst_disabled leverage go tag based stubs at compile time.
|
||||
# Building with these tags should be checked and enforced at pre-submit.
|
||||
- name: Build for fuzzing
|
||||
run: go build -tags=fuzz,blst_disabled ./...
|
||||
|
||||
# Tests run via Bazel for now...
|
||||
# - name: Test
|
||||
# run: go test -v ./...
|
||||
|
@ -104,6 +104,11 @@ func SignatureFromBytes(_ []byte) (Signature, error) {
|
||||
panic(err)
|
||||
}
|
||||
|
||||
// MultipleSignaturesFromBytes -- stub
|
||||
func MultipleSignaturesFromBytes(multiSigs [][]byte) ([]common.Signature, error) {
|
||||
panic(err)
|
||||
}
|
||||
|
||||
// AggregatePublicKeys -- stub
|
||||
func AggregatePublicKeys(_ [][]byte) (PublicKey, error) {
|
||||
panic(err)
|
||||
|
Loading…
Reference in New Issue
Block a user