13 lines
841 B
YAML
13 lines
841 B
YAML
language: objective-c
|
|
osx_image: xcode7.3
|
|
|
|
script:
|
|
- set -o pipefail
|
|
- xcodebuild clean build test -workspace ./ChattoApp/ChattoApp.xcworkspace -scheme ChattoApp -sdk iphonesimulator -destination 'platform=iOS Simulator,name=iPhone 6,OS=9.3' -configuration Debug | xcpretty
|
|
- rm -rf ~/Library/Developer/Xcode/DerivedData
|
|
- xcodebuild clean build test -workspace ./Chatto.xcworkspace -scheme Chatto -sdk iphonesimulator -destination 'platform=iOS Simulator,name=iPhone 6,OS=9.3' -configuration Debug | xcpretty
|
|
- (curl -s https://codecov.io/bash) | bash
|
|
- rm -rf ~/Library/Developer/Xcode/DerivedData
|
|
- xcodebuild clean build test -workspace ./Chatto.xcworkspace -scheme ChattoAdditions -sdk iphonesimulator -destination 'platform=iOS Simulator,name=iPhone 6,OS=9.3' -configuration Debug | xcpretty
|
|
- (curl -s https://codecov.io/bash) | bash
|