Skip to content

Commit

Permalink
fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Wojtek committed Mar 15, 2024
1 parent 622ee53 commit 38109a9
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion build/bridge/tests.go
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ func BuildIntegrationTests(name string) build.CommandFunc {
return func(ctx context.Context, deps build.DepsFunc) error {
deps(BuildSmartContract)

return golang.BuildTests(ctx, golang.TestBuildConfig{
return golang.BuildTests(ctx, deps, golang.TestBuildConfig{
PackagePath: filepath.Join(testsDir, name),
Flags: []string{
"-tags=integrationtests",
Expand Down
6 changes: 3 additions & 3 deletions build/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -4,19 +4,19 @@ go 1.21

require (
github.com/CoreumFoundation/coreum-tools v0.4.1-0.20240223065112-97400ae15d8e
github.com/CoreumFoundation/crust/build v0.0.0-20240314162557-6208b1828c90
github.com/CoreumFoundation/crust/build v0.0.0-20240315073401-1192a9abf980
github.com/pkg/errors v0.9.1
go.uber.org/zap v1.26.0
golang.org/x/mod v0.14.0
)

require (
github.com/BurntSushi/toml v1.3.2 // indirect
github.com/samber/lo v1.39.0 // indirect
github.com/spf13/pflag v1.0.5 // indirect
go.uber.org/multierr v1.11.0 // indirect
go.uber.org/zap v1.26.0 // indirect
// Make sure to not bump x/exp dependency without cosmos-sdk updated because their breaking change is not compatible
// with cosmos-sdk v0.47.
// Details: https://github.com/cosmos/cosmos-sdk/issues/18415
golang.org/x/exp v0.0.0-20230713183714-613f0c0eb8a1 // indirect
golang.org/x/mod v0.14.0 // indirect
)
4 changes: 2 additions & 2 deletions build/go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ github.com/BurntSushi/toml v1.3.2 h1:o7IhLm0Msx3BaB+n3Ag7L8EVlByGnpq14C4YWiu/gL8
github.com/BurntSushi/toml v1.3.2/go.mod h1:CxXYINrC8qIiEnFrOxCa7Jy5BFHlXnUU2pbicEuybxQ=
github.com/CoreumFoundation/coreum-tools v0.4.1-0.20240223065112-97400ae15d8e h1:6MCIbGsq9Do8dZdjbFSLIdHRhB3MbHb7euQebYzxV/U=
github.com/CoreumFoundation/coreum-tools v0.4.1-0.20240223065112-97400ae15d8e/go.mod h1:VD93vCHkxYaT/RhOesXTFgd/GQDW54tr0BqGi5JU1c0=
github.com/CoreumFoundation/crust/build v0.0.0-20240314162557-6208b1828c90 h1:D/PR5hl2MtVT/wR/9yOe30WGJ7ag66Wgqp/OGe8jSVk=
github.com/CoreumFoundation/crust/build v0.0.0-20240314162557-6208b1828c90/go.mod h1:ZUxc7Pskj95EYmPMp8kU6yyeyZ5PcWuixfbVfIlGTVs=
github.com/CoreumFoundation/crust/build v0.0.0-20240315073401-1192a9abf980 h1:LuUyiUvzYdvqBLSlMfLMCfAp79tLnUi3rQutve0UW94=
github.com/CoreumFoundation/crust/build v0.0.0-20240315073401-1192a9abf980/go.mod h1:ZUxc7Pskj95EYmPMp8kU6yyeyZ5PcWuixfbVfIlGTVs=
github.com/benbjohnson/clock v1.1.0/go.mod h1:J11/hYXuz8f4ySSvYwY0FKfm+ezbsZBKZxNJlLklBHA=
github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c=
Expand Down

0 comments on commit 38109a9

Please sign in to comment.