-
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.
Try Travis builtin support for Cocoapods & xctool
- Loading branch information
1 parent
833a215
commit 227c9b2
Showing
1 changed file
with
10 additions
and
4 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,12 +1,18 @@ | ||
language: objective-c | ||
before_install: | ||
- brew install gflags | ||
env: | ||
global: | ||
- CONFIG=opt | ||
- TEST=objc | ||
- JOBS=1 | ||
script: | ||
- ./tools/run_tests/run_tests.py -l $TEST -t -j $JOBS -c $CONFIG -s 4.0 | ||
before_install: | ||
- brew install gflags | ||
- make grpc_objective_c_plugin | ||
- make interop_server | ||
podfile: src/objective-c/tests/Podfile | ||
before_script: | ||
- bins/$CONFIG/interop_server --port=5050 & | ||
- bins/$CONFIG/interop_server --port=5051 --use_tls & | ||
xcode_workspace: src/objective-c/tests/Tests.xcworkspace | ||
xcode_scheme: AllTests | ||
notifications: | ||
email: false |