Skip to content

Commit

Permalink
internal: update proto library version (grpc#3025)
Browse files Browse the repository at this point in the history
Also, two fixes:

- Fix long-standing `.travis.yml` bug where `VET_SKIP_PROTO` was not `export`ed (so not seen by `vet.sh`).
- Update `vet.sh` to work with new `goimports -l` that does not print a `:` after filenames.
  • Loading branch information
dfawley authored Sep 17, 2019
1 parent 7b8c556 commit e2cfd1c
Show file tree
Hide file tree
Showing 28 changed files with 1,734 additions and 2,467 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ before_install:
- if [[ "${GO111MODULE}" = "on" ]]; then mkdir "${HOME}/go"; export GOPATH="${HOME}/go"; fi
- if [[ -n "${RUN386}" ]]; then export GOARCH=386; fi
- if [[ "${TRAVIS_EVENT_TYPE}" = "cron" && -z "${RUN386}" ]]; then RACE=1; fi
- if [[ "${TRAVIS_EVENT_TYPE}" != "cron" ]]; then VET_SKIP_PROTO=1; fi
- if [[ "${TRAVIS_EVENT_TYPE}" != "cron" ]]; then export VET_SKIP_PROTO=1; fi

install:
- try3() { eval "$*" || eval "$*" || eval "$*"; }
Expand Down
335 changes: 109 additions & 226 deletions balancer/grpclb/grpc_lb_v1/load_balancer.pb.go

Large diffs are not rendered by default.

Loading

0 comments on commit e2cfd1c

Please sign in to comment.