forked from flashbots/mev-boost
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* start goreleaser * try setup from franciscodiazydiaz/mev-boost
- Loading branch information
Showing
5 changed files
with
164 additions
and
12 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -23,6 +23,8 @@ | |
/mev-boost | ||
/test-cli | ||
/tmp | ||
/dist | ||
.vscode/ | ||
/README.internal.md | ||
/validator_data.json | ||
/validator_data.json | ||
/build/ |
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,14 @@ | ||
project_name: mev-boost | ||
builds: | ||
- id: mev-boost-portable | ||
ldflags: | ||
- -X github.com/flashbots/mev-boost/config.Version={{.Version}} | ||
env: | ||
- CGO_ENABLED=1 | ||
- CGO_CFLAGS_ALLOW="-D__BLST_PORTABLE__" | ||
- CGO_CFLAGS="-D__BLST_PORTABLE__" | ||
goos: | ||
- darwin | ||
goarch: | ||
- amd64 | ||
- arm64 |
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,41 @@ | ||
project_name: mev-boost | ||
builds: | ||
- id: mev-boost-portable | ||
ldflags: | ||
- -X github.com/flashbots/mev-boost/config.Version={{.Version}} | ||
env: | ||
- CGO_ENABLED=1 | ||
- CGO_CFLAGS_ALLOW="-D__BLST_PORTABLE__" | ||
- CGO_CFLAGS="-D__BLST_PORTABLE__" | ||
goos: | ||
- linux | ||
- windows | ||
goarch: | ||
- amd64 | ||
- arm64 | ||
|
||
# List of combinations of GOOS + GOARCH + GOARM to ignore. | ||
# Default is empty. | ||
ignore: | ||
- goos: windows | ||
goarch: arm64 | ||
|
||
# Overrides allows to override some fields for specific targets. | ||
# This can be specially useful when using CGO. | ||
# Note: it'll only match if the full target matches. | ||
overrides: | ||
- goos: linux | ||
goarch: arm64 | ||
env: | ||
- CGO_ENABLED=1 | ||
- CGO_CFLAGS_ALLOW="-D__BLST_PORTABLE__" | ||
- CGO_CFLAGS="-D__BLST_PORTABLE__" | ||
- CC=aarch64-linux-gnu-gcc | ||
- goos: windows | ||
goarch: amd64 | ||
goamd64: v1 | ||
env: | ||
- CGO_ENABLED=1 | ||
- CGO_CFLAGS_ALLOW="-D__BLST_PORTABLE__" | ||
- CGO_CFLAGS="-D__BLST_PORTABLE__" | ||
- CC=x86_64-w64-mingw32-gcc |
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,7 @@ | ||
builds: | ||
- skip: true | ||
release: | ||
draft: true | ||
extra_files: | ||
- glob: ./build/**/* | ||
- glob: ./build/checksums.txt |