Skip to content

Instantly share code, notes, and snippets.

@Shashikant86
Created December 22, 2018 10:46
Show Gist options
  • Select an option

  • Save Shashikant86/aa8ce81286b31dcddb6daf8f20d766bc to your computer and use it in GitHub Desktop.

Select an option

Save Shashikant86/aa8ce81286b31dcddb6daf8f20d766bc to your computer and use it in GitHub Desktop.
Parallel XCTest TravisCI
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