From f7f33dbc0168b18ec95b96eb9aa1828ceb6cd624 Mon Sep 17 00:00:00 2001 From: Matt Joiner Date: Fri, 26 Jul 2019 11:00:28 +1000 Subject: [PATCH] Don't test with -race or -v for 32-bit We just want to know that it builds and works for normal use. --- .circleci/config.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 6a568ec4..a811379f 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -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" }} -- 2.48.1