From: Matt Joiner <anacrolix@gmail.com>
Date: Fri, 26 Jul 2019 00:49:36 +0000 (+1000)
Subject: Test 32-bit arch on CircleCI
X-Git-Tag: v1.5.1~2
X-Git-Url: http://www.git.stargrave.org/?a=commitdiff_plain;h=011df3da4af3918a17888dd21d4702b4f08b80c8;p=btrtrc.git

Test 32-bit arch on CircleCI

See https://github.com/anacrolix/missinggo/issues/16
---

diff --git a/.circleci/config.yml b/.circleci/config.yml
index 66fe22a4..6a568ec4 100644
--- a/.circleci/config.yml
+++ b/.circleci/config.yml
@@ -47,6 +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: go install ./cmd/torrentfs
       - save_cache:
           key: go-pkg-{{ checksum "go.mod" }}