Don't test with -race or -v for 32-bit

We just want to know that it builds and works for normal use.
This commit is contained in:
Matt Joiner 2019-07-26 11:00:28 +10:00
parent 711d909272
commit f7f33dbc01
1 changed files with 1 additions and 1 deletions

View File

@ -47,7 +47,7 @@ jobs:
- run: go test -v -race ./... -count 2
- run: go test -bench . ./...
- run: set +e; CGO_ENABLED=0 go test -v ./...; true
- run: GOARCH=386 go test -v -race ./... -count 2 -bench .
- run: GOARCH=386 go test ./... -count 2 -bench .
- run: go install ./cmd/torrentfs
- save_cache:
key: go-pkg-{{ checksum "go.mod" }}