Skip to content

Commit ae9a294

Browse files
committed
fix(ci): preload IBC realms in mod-download instead of disabling lazy loader
The previous `-lazy-loader=false` fix caused `no signatures error` and `invalid package` errors. Using `-paths` with our IBC realms transitively loads all required package dependencies before `gno mod download` runs, avoiding the 502 errors from concurrent lazy loads.
1 parent ad3a41f commit ae9a294

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ test:
2727
mod-download:
2828
go tool gnodev -empty-blocks -resolver root=. \
2929
-resolver root=$(shell go tool gno env GNOROOT)/examples \
30-
-lazy-loader=false & \
30+
-paths "gno.land/r/aib/ibc/core,gno.land/r/aib/ibc/apps/transfer,gno.land/r/aib/ibc/apps/testing/grc20test" & \
3131
while ! curl -s http://127.0.0.1:26657/status > /dev/null 2>&1; do sleep 1; done; \
3232
go tool gno clean -modcache=true; \
3333
go tool gno mod download -remote-overrides gno.land=http://127.0.0.1:26657

0 commit comments

Comments
 (0)