aboutsummaryrefslogtreecommitdiffhomepage
path: root/.travis.yml
diff options
context:
space:
mode:
authorGravatar Jorge Canizales <jcanizales@google.com>2015-10-28 03:48:42 -0700
committerGravatar Jorge Canizales <jcanizales@google.com>2015-10-28 16:51:24 -0700
commitbda34767fac2389a405ada15fff0913d786255f2 (patch)
treee32caff6b8355fdb7c8b0a8f4fab103621980b08 /.travis.yml
parent227c9b2a05b8746af7704ac56f1bbc8ca538f697 (diff)
Pod install manually, to get —-verbose
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml7
1 files changed, 6 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml
index 0696514350..c48d39ac28 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -8,7 +8,12 @@ before_install:
- brew install gflags
- make grpc_objective_c_plugin
- make interop_server
-podfile: src/objective-c/tests/Podfile
+install:
+ - pushd src/objective-c/tests
+ # Needs to be verbose, or otherwise OpenSSL's prepare_command makes Travis
+ # time out:
+ - pod install --verbose
+ - popd
before_script:
- bins/$CONFIG/interop_server --port=5050 &
- bins/$CONFIG/interop_server --port=5051 --use_tls &