blob: 87f40b83d9dd742da3b93ae79607a3001aeae50c [file] [log] [blame]
Don Newton98fd8812019-09-23 15:15:02 -04001language: go
2
3matrix:
4 include:
Don Newtone0d34a82019-11-14 10:58:06 -05005 - go: 1.13.x
Don Newton98fd8812019-09-23 15:15:02 -04006 env: VET=1 GO111MODULE=on
Don Newtone0d34a82019-11-14 10:58:06 -05007 - go: 1.13.x
Don Newton98fd8812019-09-23 15:15:02 -04008 env: RACE=1 GO111MODULE=on
Don Newtone0d34a82019-11-14 10:58:06 -05009 - go: 1.13.x
Don Newton98fd8812019-09-23 15:15:02 -040010 env: RUN386=1
Don Newtone0d34a82019-11-14 10:58:06 -050011 - go: 1.13.x
Don Newton98fd8812019-09-23 15:15:02 -040012 env: GRPC_GO_RETRY=on
Don Newtone0d34a82019-11-14 10:58:06 -050013 - go: 1.13.x
14 env: TESTEXAMPLES=1
15 - go: 1.12.x
16 env: GO111MODULE=on
Don Newton98fd8812019-09-23 15:15:02 -040017 - go: 1.11.x
18 env: GO111MODULE=on
Don Newton98fd8812019-09-23 15:15:02 -040019 - 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
Don Newtone0d34a82019-11-14 10:58:06 -050028 - if [[ "${TRAVIS_EVENT_TYPE}" != "cron" ]]; then export VET_SKIP_PROTO=1; fi
Don Newton98fd8812019-09-23 15:15:02 -040029
30install:
31 - try3() { eval "$*" || eval "$*" || eval "$*"; }
32 - try3 'if [[ "${GO111MODULE}" = "on" ]]; then go mod download; else make testdeps; fi'
Don Newtone0d34a82019-11-14 10:58:06 -050033 - if [[ -n "${GAE}" ]]; then source ./install_gae.sh; make testappenginedeps; fi
34 - if [[ -n "${VET}" ]]; then ./vet.sh -install; fi
Don Newton98fd8812019-09-23 15:15:02 -040035
36script:
37 - set -e
Don Newtone0d34a82019-11-14 10:58:06 -050038 - 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
Don Newton98fd8812019-09-23 15:15:02 -040042 - make test