You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
561 B
14 lines
561 B
# references:
|
|
# * https://www.objc.io/issues/6-build-tools/travis-ci/
|
|
# * https://github.com/supermarin/xcpretty#usage
|
|
|
|
osx_image: xcode7.3
|
|
language: objective-c
|
|
# cache: cocoapods
|
|
# podfile: Example/Podfile
|
|
# before_install:
|
|
# - gem install cocoapods # Since Travis is not always on latest version
|
|
# - pod install --project-directory=Example
|
|
script:
|
|
- set -o pipefail && xcodebuild test -enableCodeCoverage YES -workspace Example/open_im_sdk_ios.xcworkspace -scheme open_im_sdk_ios-Example -sdk iphonesimulator9.3 ONLY_ACTIVE_ARCH=NO | xcpretty
|
|
- pod lib lint
|
|
|