blob: 87f40b83d9dd742da3b93ae79607a3001aeae50c [file] [log] [blame]
Scott Baker2c1c4822019-10-16 11:02:41 -07001language: go
2
3matrix:
4 include:
khenaidoo26721882021-08-11 17:42:52 -04005 - go: 1.13.x
Scott Baker2c1c4822019-10-16 11:02:41 -07006 env: VET=1 GO111MODULE=on
khenaidoo26721882021-08-11 17:42:52 -04007 - go: 1.13.x
Scott Baker2c1c4822019-10-16 11:02:41 -07008 env: RACE=1 GO111MODULE=on
khenaidoo26721882021-08-11 17:42:52 -04009 - go: 1.13.x
Scott Baker2c1c4822019-10-16 11:02:41 -070010 env: RUN386=1
khenaidoo26721882021-08-11 17:42:52 -040011 - go: 1.13.x
Scott Baker2c1c4822019-10-16 11:02:41 -070012 env: GRPC_GO_RETRY=on
khenaidoo26721882021-08-11 17:42:52 -040013 - go: 1.13.x
14 env: TESTEXAMPLES=1
15 - go: 1.12.x
16 env: GO111MODULE=on
Scott Baker2c1c4822019-10-16 11:02:41 -070017 - go: 1.11.x
18 env: GO111MODULE=on
Scott Baker2c1c4822019-10-16 11:02:41 -070019 - 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'
khenaidoo26721882021-08-11 17:42:52 -040033 - if [[ -n "${GAE}" ]]; then source ./install_gae.sh; make testappenginedeps; fi
34 - if [[ -n "${VET}" ]]; then ./vet.sh -install; fi
Scott Baker2c1c4822019-10-16 11:02:41 -070035
36script:
37 - set -e
khenaidoo26721882021-08-11 17:42:52 -040038 - 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
Scott Baker2c1c4822019-10-16 11:02:41 -070042 - make test