-
Notifications
You must be signed in to change notification settings - Fork 576
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update travis, slather configuration to try include all the relevant …
…information.
- Loading branch information
Showing
3 changed files
with
10 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
service: travis_ci | ||
coverage_service: coveralls | ||
xcodeproj: Bolts.xcodeproj | ||
source_directory: Bolts | ||
build_directory: build |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,19 @@ | ||
language: objective-c | ||
osx_image: beta-xcode6.3 | ||
cache: | ||
- bundler | ||
- cocoapods | ||
before_install: | ||
- gem install xcpretty -N | ||
- gem install cocoapods --pre --quiet | ||
- gem install slather | ||
- gem install xcpretty -N --no-ri --no-rdoc | ||
- gem install cocoapods --pre --quiet --no-ri --no-rdoc | ||
- gem install slather --no-ri --no-rdoc | ||
- pod setup --silent | ||
- pod repo update --silent | ||
script: | ||
- pod lib lint Bolts.podspec | ||
- pod lib lint --use-libraries Bolts.podspec | ||
- set -o pipefail | ||
- xcodebuild -project Bolts.xcodeproj -sdk iphonesimulator -scheme Bolts test | xcpretty -c | ||
- xcodebuild -project Bolts.xcodeproj -sdk macosx -scheme MacBolts test | xcpretty -c | ||
- xcodebuild test -project Bolts.xcodeproj -sdk macosx -scheme MacBolts -configuration Debug OBJROOT="$PWD/build" SYMROOT="$PWD/build" ONLY_ACTIVE_ARCH=NO GCC_INSTRUMENT_PROGRAM_FLOW_ARCS=YES GCC_GENERATE_TEST_COVERAGE_FILES=YES | xcpretty -c | ||
- xcodebuild test -project Bolts.xcodeproj -sdk iphonesimulator -scheme Bolts -configuration Debug OBJROOT="$PWD/build" SYMROOT="$PWD/build" ONLY_ACTIVE_ARCH=NO GCC_INSTRUMENT_PROGRAM_FLOW_ARCS=YES GCC_GENERATE_TEST_COVERAGE_FILES=YES | xcpretty -c | ||
after_success: | ||
- slather |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters