-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix heighliner makefile, bump ci deps
- Loading branch information
hard-nett
committed
Apr 8, 2024
1 parent
7a8cdac
commit 7968313
Showing
5 changed files
with
34 additions
and
4 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
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,30 @@ | ||
############################################################################### | ||
### heighliner ### | ||
############################################################################### | ||
.PHONY: get-heighliner local-image | ||
|
||
heighliner-help: | ||
@echo "heighliner subcommands" | ||
@echo "" | ||
@echo "Usage:" | ||
@echo " make heighliner-[command]" | ||
@echo "" | ||
@echo "Available Commands:" | ||
@echo " get Install Heighliner" | ||
@echo " local-image Create a local image" | ||
@echo "" | ||
@echo "" | ||
|
||
|
||
heighliner: heighliner-help | ||
|
||
heighliner-get: | ||
git clone https://github.com/strangelove-ventures/heighliner.git | ||
cd heighliner && go install | ||
|
||
heighliner-local-image: | ||
ifeq (,$(shell which heighliner)) | ||
echo 'heighliner' binary not found. Consider running `make get-heighliner` | ||
else | ||
heighliner build -c terpnetwork --local -f ./chains.yaml | ||
endif |