forked from grpc-ecosystem/grpc-gateway
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Daniil Kukharau
authored
Oct 31, 2018
1 parent
967b59d
commit 94a2d0d
Showing
1 changed file
with
21 additions
and
75 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,82 +1,28 @@ | ||
language: go | ||
sudo: false | ||
|
||
go: | ||
- 1.9.x | ||
- 1.10.x | ||
- master | ||
go_import_path: github.com/grpc-ecosystem/grpc-gateway | ||
cache: | ||
directories: | ||
- $HOME/local | ||
- ${TRAVIS_BUILD_DIR}/examples/browser/node_modules | ||
- $HOME/.cache/_grpc_gateway_bazel | ||
before_install: | ||
- if [ "${USE_BAZEL}" = true ]; then ./.travis/install-bazel.sh $BAZEL_VERSION; fi | ||
- test "${USE_BAZEL}" = true || ./.travis/install-protoc.sh $PROTOC_VERSION | ||
- test "${USE_BAZEL}" = true || ./.travis/install-swagger-codegen.sh $SWAGGER_CODEGEN_VERSION | ||
- test "${USE_BAZEL}" = true || (nvm install $NODE_VERSION && nvm use $NODE_VERSION && node --version) | ||
- test "${USE_BAZEL}" = true || go get github.com/golang/lint/golint | ||
- test "${USE_BAZEL}" = true || go get github.com/dghubble/sling | ||
- test "${USE_BAZEL}" = true || go get github.com/go-resty/resty | ||
- test "${USE_BAZEL}" = true || curl https://raw.githubusercontent.com/golang/dep/master/install.sh | sh | ||
install: | ||
# Make sure externally referenced packages are go-gettable. | ||
- test "${USE_BAZEL}" = true || | ||
go get github.com/grpc-ecosystem/grpc-gateway/protoc-gen-grpc-gateway | ||
- test "${USE_BAZEL}" = true || | ||
go get github.com/grpc-ecosystem/grpc-gateway/protoc-gen-swagger | ||
- test "${USE_BAZEL}" = true || | ||
go get github.com/grpc-ecosystem/grpc-gateway/runtime | ||
- test "${USE_BAZEL}" = true || | ||
go get github.com/grpc-ecosystem/grpc-gateway/examples/cmd/example-grpc-server | ||
- test "${USE_BAZEL}" = true || | ||
go get github.com/grpc-ecosystem/grpc-gateway/examples/cmd/example-gateway-server | ||
- "1.10" | ||
|
||
# Just build if USE_BAZEL | ||
- if [ "${USE_BAZEL}" = true ]; then ./.travis/bazel-build.sh; fi | ||
before_script: | ||
- test "${USE_BAZEL}" = true || | ||
(cd examples/browser && npm install) | ||
script: | ||
# Make sure examples of generated files are up-to-date | ||
- test "${USE_BAZEL}" = true || | ||
(make realclean && make examples SWAGGER_CODEGEN="java -jar $HOME/local/swagger-codegen-cli.jar") | ||
- if [ -z "${USE_BAZEL}" ] && | ||
(go version | grep -q "${GO_VERSION_TO_DIFF_TEST}") && | ||
[ -z "${GATEWAY_PLUGIN_FLAGS}" ]; then | ||
test -z "$(git status --porcelain)" || (git status; git diff; exit 1); | ||
fi | ||
env: | ||
- DEP_VERSION="0.4.1" | ||
|
||
# Unit tests, integration tests and code health checks | ||
- test "${USE_BAZEL}" = true || | ||
env GLOG_logtostderr=1 go test -race -v github.com/grpc-ecosystem/grpc-gateway/... | ||
- test "${USE_BAZEL}" = true || | ||
make lint | ||
- test "${USE_BAZEL}" = true || | ||
sh -c 'cd examples/browser && node ./node_modules/gulp/bin/gulp' | ||
branches: | ||
only: | ||
- atlas-patch | ||
|
||
- if [ "${USE_BAZEL}" = true ]; then ./.travis/bazel-test.sh; fi | ||
install: | ||
# Download and install dep | ||
- mv $GOPATH/src/github.com/infobloxopen $GOPATH/src/github.com/grpc-ecosystem | ||
- curl -L -s https://github.com/golang/dep/releases/download/v${DEP_VERSION}/dep-linux-amd64 -o $GOPATH/bin/dep | ||
- chmod +x $GOPATH/bin/dep | ||
- dep ensure -vendor-only | ||
|
||
# test coverage | ||
- if (go version | grep -q "${GO_VERSION_TO_DIFF_TEST}") && | ||
[ -z "${GATEWAY_PLUGIN_FLAGS}" ]; then | ||
env GLOG_logtostderr=1 ./bin/coverage; | ||
fi | ||
after_success: | ||
- bash <(curl -s https://codecov.io/bash) | ||
script: | ||
- go install ./protoc-gen-swagger | ||
|
||
env: | ||
global: | ||
- "PATH=$PATH:$HOME/local/bin" | ||
- GO_VERSION_TO_DIFF_TEST="go version go1\.10\.[0-9]\+ linux/amd64" | ||
- BAZEL_VERSION=0.12.0 | ||
- NODE_VERSION=v6.1 | ||
- PROTOC_VERSION=3.1.0 | ||
- SWAGGER_CODEGEN_VERSION=2.2.2 | ||
matrix: | ||
- GATEWAY_PLUGIN_FLAGS= | ||
- GATEWAY_PLUGIN_FLAGS=request_context=false | ||
matrix: | ||
include: | ||
- go: master | ||
env: USE_BAZEL=true | ||
# Trigger build/push of latest gentool | ||
deploy: | ||
on: | ||
branch: atlas-patch | ||
provider: script | ||
script: curl -LO --retry 3 https://raw.github.com/mernst/plume-lib/master/bin/trigger-travis.sh && sh trigger-travis.sh infobloxopen atlas-gentool $TRAVIS_ACCESS_TOKEN |