blob: a7755857244b31026153761a658d9c2ae1a50db5 [file] [log] [blame]
Serge Bazanskicc25bdf2018-10-25 14:02:58 +02001language: go
2
3matrix:
4 include:
5 - go: 1.11.x
6 env: VET=1 GO111MODULE=on
7 - go: 1.11.x
8 env: RACE=1 GO111MODULE=on
9 - go: 1.11.x
10 env: RUN386=1
11 - go: 1.11.x
12 env: GRPC_GO_RETRY=on
13 - go: 1.10.x
14 - go: 1.9.x
15 - go: 1.9.x
16 env: GAE=1
17 - go: 1.8.x
18 - go: 1.6.x
19
20go_import_path: google.golang.org/grpc
21
22before_install:
23 - if [[ "${GO111MODULE}" = "on" ]]; then mkdir "${HOME}/go"; export GOPATH="${HOME}/go"; fi
24 - if [[ -n "${RUN386}" ]]; then export GOARCH=386; fi
25 - if [[ "${TRAVIS_EVENT_TYPE}" = "cron" && -z "${RUN386}" ]]; then RACE=1; fi
26 - if [[ "${TRAVIS_EVENT_TYPE}" != "cron" ]]; then VET_SKIP_PROTO=1; fi
27
28install:
29 - try3() { eval "$*" || eval "$*" || eval "$*"; }
30 - try3 'if [[ "${GO111MODULE}" = "on" ]]; then go mod download; else make testdeps; fi'
31 - if [[ "${GAE}" = 1 ]]; then source ./install_gae.sh; make testappenginedeps; fi
32 - if [[ "${VET}" = 1 ]]; then ./vet.sh -install; fi
33
34script:
35 - set -e
36 - if [[ "${VET}" = 1 ]]; then ./vet.sh; fi
37 - if [[ "${GAE}" = 1 ]]; then make testappengine; exit 0; fi
38 - if [[ "${RACE}" = 1 ]]; then make testrace; exit 0; fi
39 - make test