blob: 87f40b83d9dd742da3b93ae79607a3001aeae50c [file] [log] [blame]
Girish Gowdra64503432020-01-07 10:59:10 +05301language: go
2
3matrix:
4 include:
Girish Gowdra390f12f2021-07-01 15:53:49 -07005 - go: 1.13.x
Girish Gowdra64503432020-01-07 10:59:10 +05306 env: VET=1 GO111MODULE=on
Girish Gowdra390f12f2021-07-01 15:53:49 -07007 - go: 1.13.x
Girish Gowdra64503432020-01-07 10:59:10 +05308 env: RACE=1 GO111MODULE=on
Girish Gowdra390f12f2021-07-01 15:53:49 -07009 - go: 1.13.x
Girish Gowdra64503432020-01-07 10:59:10 +053010 env: RUN386=1
Girish Gowdra390f12f2021-07-01 15:53:49 -070011 - go: 1.13.x
Girish Gowdra64503432020-01-07 10:59:10 +053012 env: GRPC_GO_RETRY=on
Girish Gowdra390f12f2021-07-01 15:53:49 -070013 - go: 1.13.x
14 env: TESTEXAMPLES=1
15 - go: 1.12.x
16 env: GO111MODULE=on
Girish Gowdra64503432020-01-07 10:59:10 +053017 - go: 1.11.x
18 env: GO111MODULE=on
Girish Gowdra64503432020-01-07 10:59:10 +053019 - go: 1.9.x
20 env: GAE=1
21
22go_import_path: google.golang.org/grpc
23
24before_install:
25 - if [[ "${GO111MODULE}" = "on" ]]; then mkdir "${HOME}/go"; export GOPATH="${HOME}/go"; fi
26 - if [[ -n "${RUN386}" ]]; then export GOARCH=386; fi
27 - if [[ "${TRAVIS_EVENT_TYPE}" = "cron" && -z "${RUN386}" ]]; then RACE=1; fi
28 - if [[ "${TRAVIS_EVENT_TYPE}" != "cron" ]]; then export VET_SKIP_PROTO=1; fi
29
30install:
31 - try3() { eval "$*" || eval "$*" || eval "$*"; }
32 - try3 'if [[ "${GO111MODULE}" = "on" ]]; then go mod download; else make testdeps; fi'
Girish Gowdra390f12f2021-07-01 15:53:49 -070033 - if [[ -n "${GAE}" ]]; then source ./install_gae.sh; make testappenginedeps; fi
34 - if [[ -n "${VET}" ]]; then ./vet.sh -install; fi
Girish Gowdra64503432020-01-07 10:59:10 +053035
36script:
37 - set -e
Girish Gowdra390f12f2021-07-01 15:53:49 -070038 - if [[ -n "${TESTEXAMPLES}" ]]; then examples/examples_test.sh; exit 0; fi
39 - if [[ -n "${VET}" ]]; then ./vet.sh; fi
40 - if [[ -n "${GAE}" ]]; then make testappengine; exit 0; fi
41 - if [[ -n "${RACE}" ]]; then make testrace; exit 0; fi
Girish Gowdra64503432020-01-07 10:59:10 +053042 - make test