Skip to content

Commit 47d8591

Browse files
authored
Run Go1.9 and 386 on Travis (#1475)
1 parent d687003 commit 47d8591

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

.travis.yml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,18 @@ go:
44
- 1.6.x
55
- 1.7.x
66
- 1.8.x
7+
- 1.9.x
8+
9+
matrix:
10+
include:
11+
- go: 1.9.x
12+
env: ARCH=386
713

814
go_import_path: google.golang.org/grpc
915

1016
before_install:
11-
- 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
1218

1319
script:
14-
- 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
1521
- make test testrace

0 commit comments

Comments
 (0)