diff options
Diffstat (limited to 'vendor/github.com/uptrace/bun/Makefile')
-rw-r--r-- | vendor/github.com/uptrace/bun/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/vendor/github.com/uptrace/bun/Makefile b/vendor/github.com/uptrace/bun/Makefile index 54744c617..e121c1d8e 100644 --- a/vendor/github.com/uptrace/bun/Makefile +++ b/vendor/github.com/uptrace/bun/Makefile @@ -4,7 +4,8 @@ test: set -e; for dir in $(ALL_GO_MOD_DIRS); do \ echo "go test in $${dir}"; \ (cd "$${dir}" && \ - go test ./... && \ + go test && \ + env GOOS=linux GOARCH=386 go test && \ go vet); \ done |