-
Notifications
You must be signed in to change notification settings - Fork 50
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: implement chains.yaml split and embed data into binary (#286)
* split chains.yaml into individual chains * embed chains data * modify build.go to use chains.yaml * fix dead link * empty chains.yaml to prevent github Lint error * remove onex since its decommissioned * Do not use : character in comments * add newline at end of each file * remove rouge script * Use chains/*.yaml search as default and only use chains.yaml as a fallback * Adding install to makefile * Update Readme file with Make file information * Adding redirection comment * Add goreleaser yaml * use right org * only use before * goreleaser version * write chains.yaml * Update .goreleaser.yaml --------- Co-authored-by: Andrew Gouin <[email protected]>
- Loading branch information
Showing
111 changed files
with
1,244 additions
and
1,399 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
version: 1 | ||
before: | ||
hooks: | ||
- bash -c 'cat chains/*.yaml > chains.yaml' |
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,8 @@ | ||
build: | ||
cat chains/*.yaml > chains.yaml | ||
go build | ||
rm -f chains.yaml | ||
install: | ||
cat chains/*.yaml > chains.yaml | ||
go install | ||
rm -f chains.yaml |
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 @@ | ||
# This is a stub file. Please add new chains to the chains/ directory |
Oops, something went wrong.