summaryrefslogtreecommitdiff
path: root/vendor/github.com/uptrace/bun/Makefile
diff options
context:
space:
mode:
authorLibravatar tobi <31960611+tsmethurst@users.noreply.github.com>2021-09-23 11:13:28 +0200
committerLibravatar GitHub <noreply@github.com>2021-09-23 11:13:28 +0200
commit142f37f1bd0291f74e12002931d05174f3a31741 (patch)
treed2e5d80df32a0217a442cfd9ba207d5e88879b77 /vendor/github.com/uptrace/bun/Makefile
parentupdate media processing (#244) (diff)
downloadgotosocial-142f37f1bd0291f74e12002931d05174f3a31741.tar.xz
upstep bun version (#243)
Diffstat (limited to 'vendor/github.com/uptrace/bun/Makefile')
-rw-r--r--vendor/github.com/uptrace/bun/Makefile3
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