Skip to content

Commit

Permalink
fix heighliner makefile, bump ci deps
Browse files Browse the repository at this point in the history
  • Loading branch information
hard-nett committed Apr 8, 2024
1 parent 7a8cdac commit 7968313
Show file tree
Hide file tree
Showing 5 changed files with 34 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/dependency-review.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,4 @@ jobs:
- name: 'Checkout Repository'
uses: actions/checkout@v4
- name: 'Dependency Review'
uses: actions/dependency-review-action@v3
uses: actions/dependency-review-action@v4
2 changes: 1 addition & 1 deletion .github/workflows/golangci-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
- uses: actions/checkout@v4

- name: golangci-lint-terpd
uses: golangci/golangci-lint-action@v3
uses: golangci/golangci-lint-action@v4
with:
version: latest
args: --timeout 10m
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
run: sha256sum ./terpd > ./terpd_sha256.txt

- name: Release
uses: softprops/action-gh-release@v1
uses: softprops/action-gh-release@v2
with:
token: ${{ github.token }}
files: |
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ include scripts/makefiles/release.mk
include scripts/makefiles/lint.mk
include scripts/makefiles/tests.mk
include scripts/makefiles/e2e.mk
include scripts/makefiles/heighliner.mk
include scripts/makefiles/hl.mk
include scripts/makefiles/build.mk
include scripts/makefiles/deps.mk

Expand Down
30 changes: 30 additions & 0 deletions scripts/makefiles/hl.mk
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

0 comments on commit 7968313

Please sign in to comment.