Skip to content
This repository was archived by the owner on Jan 16, 2021. It is now read-only.

Commit 9fd48cd

Browse files
committed
Update Travis-CI to Xcode 7.1.
1 parent f9866ee commit 9fd48cd

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.travis.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,24 +4,24 @@ branches:
44
- master-v3
55
language: objective-c
66
os: osx
7-
osx_image: xcode7
7+
osx_image: xcode7.1
88
env:
99
global:
1010
- LC_CTYPE=en_US.UTF-8
1111
- LANG=en_US.UTF-8
1212
matrix:
13-
- TEST_TYPE=ios
14-
- TEST_TYPE=podspecs
13+
- TEST_TYPE=iOS
14+
- TEST_TYPE=CocoaPods
1515
script:
1616
- |
17-
if [ "$TEST_TYPE" = ios ]; then
17+
if [ "$TEST_TYPE" = iOS ]; then
1818
set -o pipefail
1919
xcodebuild test -workspace ParseFacebookUtils.xcworkspace -sdk iphonesimulator -scheme ParseFacebookUtils-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
20-
elif [ "$TEST_TYPE" = podspecs ]; then
20+
elif [ "$TEST_TYPE" = CocoaPods ]; then
2121
pod lib lint --use-libraries ParseFacebookUtils.podspec --allow-warnings
2222
fi
2323
after_success:
2424
- |
25-
if [ "$TEST_TYPE" = ios ]; then
25+
if [ "$TEST_TYPE" = iOS ]; then
2626
bash <(curl -s https://codecov.io/bash)
2727
fi

0 commit comments

Comments
 (0)