Skip to content

Commit

Permalink
Use Xcode 7.2 for Travis-CI.
Browse files Browse the repository at this point in the history
  • Loading branch information
nlutsenko committed Dec 11, 2015
1 parent 1135acf commit 6339789
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ branches:
- master
language: objective-c
os: osx
osx_image: xcode7.1
cache:
osx_image: xcode7.2
cache:
- cocoapods
env:
matrix:
Expand All @@ -27,14 +27,14 @@ script:
set -o pipefail
xcodebuild test -project Bolts.xcodeproj -sdk iphonesimulator -scheme Bolts-iOS -configuration Debug -destination "platform=iOS Simulator,name=iPhone 4s" -destination "platform=iOS Simulator,name=iPhone 6 Plus" GCC_INSTRUMENT_PROGRAM_FLOW_ARCS=YES GCC_GENERATE_TEST_COVERAGE_FILES=YES | xcpretty -c
elif [ "$TEST_TYPE" = OSX ]; then
set -o pipefail
set -o pipefail
xcodebuild test -project Bolts.xcodeproj -sdk macosx -scheme Bolts-OSX -configuration Debug GCC_INSTRUMENT_PROGRAM_FLOW_ARCS=YES GCC_GENERATE_TEST_COVERAGE_FILES=YES | xcpretty -c
elif [ "$TEST_TYPE" = tvOS ]; then
elif [ "$TEST_TYPE" = tvOS ]; then
set -o pipefail
xcodebuild test -project Bolts.xcodeproj -sdk appletvsimulator -scheme Bolts-tvOS -destination "platform=tvOS Simulator,name=Apple TV 1080p" -configuration Debug GCC_INSTRUMENT_PROGRAM_FLOW_ARCS=YES GCC_GENERATE_TEST_COVERAGE_FILES=YES | xcpretty -c
elif [ "$TEST_TYPE" = CocoaPods ]; then
pod lib lint Bolts.podspec
pod lib lint --use-libraries Bolts.podspec
pod lib lint --use-libraries Bolts.podspec
fi
after_success:
- |
Expand Down

0 comments on commit 6339789

Please sign in to comment.