ZipArchive/.travis.yml
2017-09-13 20:12:05 +08:00

42 lines
1.4 KiB
YAML

language: objective-c
podfile: ObjectiveCExample/Podfile
xcode_workspace: ObjectiveCExample/ObjectiveCExample.xcworkspace
xcode_scheme: ObjectiveCExample
matrix:
include:
- osx_image: xcode9
env: DESTINATION="iPhone 7 Plus (11.0)" # oldest/newest for iOS 11.x
- osx_image: xcode9
env: DESTINATION="iPhone 7 Plus (10.3.1)" # latest for iOS 10.x
- osx_image: xcode8.3
env: DESTINATION="iPhone 5 (10.0)" # oldest for iOS 10.x
- osx_image: xcode8.3
env: DESTINATION="iPhone 6s Plus (9.3)" # latest for iOS 9.x
- osx_image: xcode7.3
env: DESTINATION="iPhone 4s (9.0)" # oldest for iOS 9.x
- osx_image: xcode7.3
env: DESTINATION="iPhone 6 Plus (8.4)" # latest for iOS 8.x
- osx_image: xcode7.3
env: DESTINATION="iPhone 4s (8.1)" # oldest for iOS 8.x
before_install:
# Grepping destination device udid
- DESTINATION_UDID=$(instruments -s devices | grep "$DESTINATION \[" | sed -E 's/.*\[([0-9A-F-]+)\].*/\1/g')
# Prelaunching simulator to avoid timeout https://github.com/travis-ci/travis-ci/issues/6422
- open -a "simulator" --args -CurrentDeviceUDID $DESTINATION_UDID
script:
# Testing
- xcodebuild
`` -workspace ObjectiveCExample/ObjectiveCExample.xcworkspace
`` -scheme ObjectiveCExample -sdk iphonesimulator
`` -destination "id=$DESTINATION_UDID"
`` -configuration Debug ONLY_ACTIVE_ARCH=NO ENABLE_TESTABILITY=YES
`` test