Skip to content

*: update to grpc 1.26.0 #425

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 5 commits into from
Jan 10, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ matrix:

- os: osx
rust: stable
osx_image: xcode10.2

addons:
apt:
Expand All @@ -63,7 +64,7 @@ addons:

before_script:
- scripts/reset-submodule.cmd
- export GRPC_VERSION=1.17.2
- export GRPC_VERSION=1.26.0
- export PATH="$PATH:$HOME/.cache/bin:$HOME/.cargo/bin"
- GRPC_HEADER="$HOME/.cache/include/grpc/grpc.h"
- if [[ $TRAVIS_OS_NAME == "osx" ]] && [[ ! -f $GRPC_HEADER ]]; then
Expand All @@ -84,13 +85,15 @@ before_script:
env prefix=$HOME/.cache make install_c
);
fi
- eval "$(gimme stable)"
- export CPLUS_INCLUDE_PATH="$HOME/.cache/include"
- export LD_LIBRARY_PATH="$HOME/.cache/lib"
- export DYLD_LIBRARY_PATH="$HOME/.cache/lib"
- export LIBRARY_PATH="$HOME/.cache/lib"
- export PKG_CONFIG_PATH="$HOME/.cache/lib/pkgconfig"

script:
- which go && go version
- if [[ $TRAVIS_OS_NAME == "linux" ]] && [[ $TRAVIS_RUST_VERSION == "stable" ]]; then
rustup component add rustfmt && cargo fmt --all -- --check;
scripts/generate-bindings.sh && git diff --exit-code HEAD;
Expand Down
Loading