mirror of
https://github.com/lightninglabs/loop.git
synced 2026-08-13 12:33:03 +02:00
ci: fix 'make rpc' check
'git describe' may not work in CI because of Git shallow clones. We got false negative of this check: https://github.com/lightninglabs/loop/actions/runs/14556035205/job/40959214856 "fatal: No names found, cannot describe anything."
This commit is contained in:
parent
301c4756b4
commit
f2715e39eb
1 changed files with 1 additions and 1 deletions
2
Makefile
2
Makefile
|
|
@ -76,7 +76,7 @@ rpc:
|
|||
|
||||
rpc-check: rpc
|
||||
@$(call print, "Verifying protos.")
|
||||
if test -n "$$(git describe --dirty | grep dirty)"; then echo "Protos not properly formatted or not compiled with correct version!"; git status; git diff; exit 1; fi
|
||||
if test -n "$$(git status --porcelain)"; then echo "Protos not properly formatted or not compiled with correct version!"; git status; git diff; exit 1; fi
|
||||
|
||||
rpc-js-compile:
|
||||
@$(call print, "Compiling JSON/WASM stubs.")
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue