Skip to content

Commit

Permalink
fix: use xargs in gno-mod-tidy to make ci fail if tidy fails
Browse files Browse the repository at this point in the history
Signed-off-by: Norman Meier <[email protected]>
  • Loading branch information
n0izn0iz committed Jul 4, 2024
1 parent 635ed07 commit 844da93
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/gno-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
- name: Lint gno
run: make lint-gno

- name: Check tidy
- name: gno mod tidy
run: make gno-mod-tidy

- name: Check that there is no diff
Expand Down
10 changes: 5 additions & 5 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -424,11 +424,6 @@ install-gno: node_modules
start.gnodev-e2e:
gnodev --unsafe-api --server-mode --add-account g193vp9tjhfpldvgg3gn433ayv8pn7rtfv8shyeq $$(find gno -name gno.mod -type f -exec dirname {} \;)

.PHONY: gno-mod-tidy
gno-mod-tidy:
find gno -name gno.mod -type f -exec sh -c 'cd $$(dirname {}); gno mod tidy' \;


.PHONY: clone-gno
clone-gno:
mkdir -p gnobuild
Expand All @@ -447,6 +442,11 @@ lint-gno:
test-gno:
./gnobuild/gno/gnovm/build/gno test ./gno/... -v

.PHONY: gno-mod-tidy
gno-mod-tidy:
export gno=$$(pwd)/gnobuild/gno/gnovm/build/gno; \
find gno -name gno.mod -type f -print0 | xargs -I'{}' -0L1 sh -c 'cd $$(dirname {}); $$gno mod tidy' \;

.PHONY: clean-gno
clean-gno:
rm -rf gnobuild

0 comments on commit 844da93

Please sign in to comment.