From b5eab4ccac6df282ff981436a5a87554d7377c75 Mon Sep 17 00:00:00 2001 From: dfawley Date: Wed, 25 Oct 2017 15:59:19 -0700 Subject: [PATCH] Make travis 32-bit actually work (#1621) --- .travis.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index 413881a1..f3094b04 100644 --- a/.travis.yml +++ b/.travis.yml @@ -9,13 +9,13 @@ go: matrix: include: - go: 1.9.x - env: ARCH=386 + env: GOARCH=386 go_import_path: google.golang.org/grpc before_install: - - if [[ "$TRAVIS_GO_VERSION" = 1.9* && "$ARCH" != "386" ]]; then ./vet.sh -install || exit 1; fi + - if [[ "$TRAVIS_GO_VERSION" = 1.9* && "$GOARCH" != "386" ]]; then ./vet.sh -install || exit 1; fi script: - - if [[ "$TRAVIS_GO_VERSION" = 1.9* && "$ARCH" != "386" ]]; then ./vet.sh || exit 1; fi + - if [[ "$TRAVIS_GO_VERSION" = 1.9* && "$GOARCH" != "386" ]]; then ./vet.sh || exit 1; fi - make test testrace