From afee7e7c747702347652efa3b38bc4d6be4b5c21 Mon Sep 17 00:00:00 2001 From: Yuce Tekol Date: Tue, 24 Apr 2018 16:02:09 +0300 Subject: [PATCH] Test 32bits build --- .travis.yml | 3 ++- Makefile | 3 +++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index d0ec9fd..b91e036 100644 --- a/.travis.yml +++ b/.travis.yml @@ -13,7 +13,8 @@ before_install: - dep ensure script: - ./pilosa-master-linux-amd64/pilosa server --metric.diagnostics=false -b https://:20101 -d https_data --tls.skip-verify --tls.certificate test.pilosa.local.crt --tls.key test.pilosa.local.key --cluster.disabled static & - - PILOSA_BIND="https://:20101" make test-all + - PILOSA_BIND="https://:20101" make test-all-race - pkill pilosa - ./pilosa-master-linux-amd64/pilosa server --metric.diagnostics=false -d http_data & + - GOARCH=386 make test-all - $HOME/gopath/bin/goveralls -service=travis-ci -ignore "gopilosa_pbuf/public.pb.go" -flags="-tags=integration fullcoverage" diff --git a/Makefile b/Makefile index 9225976..b3f53ff 100644 --- a/Makefile +++ b/Makefile @@ -18,6 +18,9 @@ test: go test test-all: + go test -tags=integration -v + +test-all-race: go test -race -tags=integration -v release: