mirror of
https://gitlab.com/arm-research/smarter/smarter-device-manager.git
synced 2024-11-24 03:31:30 +00:00
21 lines
378 B
YAML
21 lines
378 B
YAML
language: go
|
|
|
|
go:
|
|
- 1.7.x
|
|
- 1.8.x
|
|
- 1.9.x
|
|
|
|
matrix:
|
|
include:
|
|
- go: 1.9.x
|
|
env: ARCH=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
|
|
|
|
script:
|
|
- if [[ "$TRAVIS_GO_VERSION" = 1.9* && "$ARCH" != "386" ]]; then ./vet.sh || exit 1; fi
|
|
- make test testrace
|