]> Sergey Matveev's repositories - btrtrc.git/commitdiff
Don't test with -race or -v for 32-bit v1.5.1
authorMatt Joiner <anacrolix@gmail.com>
Fri, 26 Jul 2019 01:00:28 +0000 (11:00 +1000)
committerMatt Joiner <anacrolix@gmail.com>
Fri, 26 Jul 2019 01:00:28 +0000 (11:00 +1000)
We just want to know that it builds and works for normal use.

.circleci/config.yml

index 6a568ec4134bd90ace64aca32e18760ce48c02b1..a811379fc4f1fd598cc3e6e255fd8f5179511009 100644 (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" }}