projects
/
btrtrc.git
/ commitdiff
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
711d909
)
Don't test with -race or -v for 32-bit
v1.5.1
author
Matt Joiner <anacrolix@gmail.com>
Fri, 26 Jul 2019 01:00:28 +0000 (11:00 +1000)
committer
Matt 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
patch
|
blob
|
history
diff --git
a/.circleci/config.yml
b/.circleci/config.yml
index 6a568ec4134bd90ace64aca32e18760ce48c02b1..a811379fc4f1fd598cc3e6e255fd8f5179511009 100644
(file)
--- 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" }}