forked from flashbots/mev-boost
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Replace blst with gnark-crypto, simplify builds (flashbots#479)
* replace blst library with Go impl, remove portable builds * CGO_ENABLED=0 * Clean up build flags & add more cgo=0 * Enable cgo for test-race * Remove -race from test-coverage * Remove double build instruction * Update goreleaser * update to gnark-crypto / go-boost-utils v1.4.1 * Fix windows/arm64 build issue * Force gnark-crypto v0.7.1 * golangci-lint ignore gomoddirectives * remove broken arm/v6 docker build * Enable gomoddirectives and add gnark to replace-allow-list * Use latest version of gnark-crypto * Revert changes to golangci.yml --------- Co-authored-by: Justin Traglia <[email protected]>
- Loading branch information
Showing
17 changed files
with
84 additions
and
236 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
# https://goreleaser.com/customization/builds/ | ||
project_name: mev-boost | ||
builds: | ||
- id: mev-boost | ||
env: | ||
# Force build to be all Go. | ||
- CGO_ENABLED=0 | ||
flags: | ||
# Remove all file system paths from the executable. | ||
- -trimpath | ||
ldflags: | ||
# Disables DWARF debugging information. | ||
- -w | ||
# Disables symbol table information. | ||
- -s | ||
# Sets the value of the symbol. | ||
- -X github.com/flashbots/mev-boost/config.Version={{.Version}} | ||
goos: | ||
- linux | ||
- darwin | ||
- windows | ||
goarch: | ||
- amd64 | ||
- arm64 |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.