Created
December 22, 2018 10:46
-
-
Save Shashikant86/aa8ce81286b31dcddb6daf8f20d766bc to your computer and use it in GitHub Desktop.
Parallel XCTest TravisCI
This file contains hidden or 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
| language: objective-c | |
| osx_image: xcode10 | |
| install: travis_wait 30 mvn install | |
| install: true | |
| matrix: | |
| include: | |
| - osx_image: xcode10 | |
| env: iPhone X | |
| script: xcodebuild -project Xcode10-ParallelTest-CI.xcodeproj/ -scheme Xcode10-ParallelTest-CI -destination 'platform=iOS Simulator,OS=12.0,name=iPhone X' clean build test CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO -parallel-testing-enabled YES -parallel-testing-worker-count 4 -quiet | |
| - osx_image: xcode10 | |
| env: iPhone 6 | |
| script: xcodebuild -project Xcode10-ParallelTest-CI.xcodeproj/ -scheme Xcode10-ParallelTest-CI -destination 'platform=iOS Simulator,OS=12.0,name=iPhone 6' clean build test CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO -parallel-testing-enabled YES -parallel-testing-worker-count 4 -quiet |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment