We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d687003 commit 47d8591Copy full SHA for 47d8591
.travis.yml
@@ -4,12 +4,18 @@ go:
4
- 1.6.x
5
- 1.7.x
6
- 1.8.x
7
+ - 1.9.x
8
+
9
+matrix:
10
+ include:
11
+ - go: 1.9.x
12
+ env: ARCH=386
13
14
go_import_path: google.golang.org/grpc
15
16
before_install:
- - if [[ "$TRAVIS_GO_VERSION" = 1.8* ]]; then ./vet.sh -install || exit 1; fi
17
+ - if [[ "$TRAVIS_GO_VERSION" = 1.9* && "$ARCH" != "386" ]]; then ./vet.sh -install || exit 1; fi
18
19
script:
- - if [[ "$TRAVIS_GO_VERSION" = 1.8* ]]; then ./vet.sh || exit 1; fi
20
+ - if [[ "$TRAVIS_GO_VERSION" = 1.9* && "$ARCH" != "386" ]]; then ./vet.sh || exit 1; fi
21
- make test testrace
0 commit comments