25 lines
803 B
YAML
25 lines
803 B
YAML
language: objective-c
|
|
osx_image: xcode8
|
|
xcode_sdk: iphonesimulator10.0
|
|
xcode_project: Validator.xcodeproj
|
|
xcode_scheme: Validator
|
|
|
|
before_install:
|
|
- gem install cocoapods -v '0.32.1'
|
|
- gem install xcpretty --no-rdoc --no-ri --no-document --quiet
|
|
|
|
script:
|
|
- xcodebuild clean build test -project Validator.xcodeproj -scheme Validator -sdk iphonesimulator -destination "platform=iOS Simulator,OS=10.0,name=iPhone 6" -enableCodeCoverage YES CODE_SIGNING_REQUIRED=NO | xcpretty
|
|
- pod lib lint
|
|
after_success:
|
|
|
|
- bash <(curl -s https://codecov.io/bash)
|
|
|
|
|
|
notifications:
|
|
webhooks:
|
|
urls:
|
|
- https://webhooks.gitter.im/e/4cfa929bd227586305cc
|
|
on_success: change # options: [always|never|change] default: always
|
|
on_failure: always # options: [always|never|change] default: always
|