forked from tristanhimmelman/ObjectMapper
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.travis.yml
More file actions
26 lines (22 loc) · 1.16 KB
/
.travis.yml
File metadata and controls
26 lines (22 loc) · 1.16 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
language: objective-c
osx_image: xcode7
env:
global:
- LANG=en_US.UTF-8
- LC_ALL=en_US.UTF-8
matrix:
- DESTINATION="OS=8.1,name=iPhone 4S" SCHEME="ObjectMapper-iOS" SDK=iphonesimulator9.0
- DESTINATION="OS=8.2,name=iPhone 5" SCHEME="ObjectMapper-iOS" SDK=iphonesimulator9.0
- DESTINATION="OS=8.3,name=iPhone 5S" SCHEME="ObjectMapper-iOS" SDK=iphonesimulator9.0
- DESTINATION="OS=8.4,name=iPhone 6" SCHEME="ObjectMapper-iOS" SDK=iphonesimulator9.0
- DESTINATION="OS=9.0,name=iPhone 6 Plus" SCHEME="ObjectMapper-iOS" SDK=iphonesimulator9.0
- DESTINATION="arch=x86_64" SCHEME="ObjectMapper-Mac" SDK=macosx10.11
before_install:
- gem install xcpretty --no-rdoc --no-ri --no-document --quiet
script:
- set -o pipefail
- xcodebuild -version
- xcodebuild -workspace ObjectMapper.xcworkspace -scheme "$SCHEME" -sdk "$SDK" -destination "$DESTINATION" -configuration Debug ONLY_ACTIVE_ARCH=NO test | xcpretty -c
- xcodebuild -workspace ObjectMapper.xcworkspace -scheme "$SCHEME" -sdk "$SDK" -destination "$DESTINATION" -configuration Release ONLY_ACTIVE_ARCH=NO test | xcpretty -c
notifications:
email: false