From 011df3da4af3918a17888dd21d4702b4f08b80c8 Mon Sep 17 00:00:00 2001 From: Matt Joiner Date: Fri, 26 Jul 2019 10:49:36 +1000 Subject: [PATCH] Test 32-bit arch on CircleCI See https://github.com/anacrolix/missinggo/issues/16 --- .circleci/config.yml | 1 + 1 file changed, 1 insertion(+) 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" }} -- 2.44.0