aboutsummaryrefslogtreecommitdiffhomepage
path: root/.travis.yml
diff options
context:
space:
mode:
authorGravatar Yuchen Zeng <zyc@google.com>2016-06-28 12:16:34 -0700
committerGravatar Yuchen Zeng <zyc@google.com>2016-06-28 12:16:34 -0700
commit431c83209a0cb16a741b712c576e33cba5cac363 (patch)
tree775bfc71671ebb4b5f366f838570068afd678d6e /.travis.yml
parentd4824d3a7eed24f572f94fea415364fe96aa1768 (diff)
Reorder the variables
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml41
1 files changed, 22 insertions, 19 deletions
diff --git a/.travis.yml b/.travis.yml
index afc6a753de..42fa7608a2 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -6,29 +6,32 @@ env:
- TEST=objc
- JOBS=1
matrix:
- - TEST_PATH="src/objective-c/tests" WORKSPACE="Tests.xcworkspace"
- SCHEME="RxLibraryUnitTests" BUILD_ONLY="false" INTEROP_SERVER="false"
- - TEST_PATH="src/objective-c/tests" WORKSPACE="Tests.xcworkspace"
- SCHEME="InteropTestsLocalSSL" BUILD_ONLY="false" INTEROP_SERVER="true"
- - TEST_PATH="src/objective-c/tests" WORKSPACE="Tests.xcworkspace"
- SCHEME="InteropTestsLocalCleartext" BUILD_ONLY="false"
+ - SCHEME="RxLibraryUnitTests" WORKSPACE="Tests.xcworkspace"
+ TEST_PATH="src/objective-c/tests" BUILD_ONLY="false"
+ INTEROP_SERVER="false"
+ - SCHEME="InteropTestsLocalSSL" WORKSPACE="Tests.xcworkspace"
+ TEST_PATH="src/objective-c/tests" BUILD_ONLY="false" INTEROP_SERVER="true"
+ - SCHEME="InteropTestsLocalCleartext" WORKSPACE="Tests.xcworkspace"
+ TEST_PATH="src/objective-c/tests" BUILD_ONLY="false"
INTEROP_SERVER="true"
# TODO(jcanizales): Investigate why they time out:
- # - TEST_PATH="src/objective-c/tests" WORKSPACE="Tests.xcworkspace"
- # SCHEME="InteropTestsRemote" BUILD_ONLY=false INTEROP_SERVER=true
- - TEST_PATH="examples/objective-c/helloworld"
- WORKSPACE="HelloWorld.xcworkspace" SCHEME="HelloWorld" BUILD_ONLY="true"
+ # - SCHEME="InteropTestsRemote" WORKSPACE="Tests.xcworkspace"
+ # TEST_PATH="src/objective-c/tests" BUILD_ONLY="false"
+ # INTEROP_SERVER="true"
+ - SCHEME="HelloWorld" WORKSPACE="HelloWorld.xcworkspace"
+ TEST_PATH="examples/objective-c/helloworld" BUILD_ONLY="true"
+ INTEROP_SERVER="false"
+ - SCHEME="RouteGuideClient" WORKSPACE="RouteGuideClient.xcworkspace"
+ TEST_PATH="examples/objective-c/route_guide" BUILD_ONLY="true"
+ INTEROP_SERVER="false"
+ - SCHEME="AuthSample" WORKSPACE="AuthSample.xcworkspace"
+ TEST_PATH="examples/objective-c/auth_sample" BUILD_ONLY="true"
INTEROP_SERVER="false"
- - TEST_PATH="examples/objective-c/route_guide"
- WORKSPACE="RouteGuideClient.xcworkspace" SCHEME="RouteGuideClient"
- BUILD_ONLY="true" INTEROP_SERVER="false"
- - TEST_PATH="examples/objective-c/auth_sample"
- WORKSPACE="AuthSample.xcworkspace" SCHEME="AuthSample" BUILD_ONLY="true"
+ - SCHEME="Sample" WORKSPACE="Sample.xcworkspace"
+ TEST_PATH="src/objective-c/examples/Sample" BUILD_ONLY="true"
INTEROP_SERVER="false"
- - TEST_PATH="src/objective-c/examples/Sample" WORKSPACE="Sample.xcworkspace"
- SCHEME="Sample" BUILD_ONLY="true" INTEROP_SERVER="false"
- - TEST_PATH="src/objective-c/examples/SwiftSample"
- WORKSPACE="SwiftSample.xcworkspace" SCHEME="SwiftSample" BUILD_ONLY="true"
+ - SCHEME="SwiftSample" WORKSPACE="SwiftSample.xcworkspace"
+ TEST_PATH="src/objective-c/examples/SwiftSample" BUILD_ONLY="true"
INTEROP_SERVER="false"
before_install:
- pod --version