-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy path.travis.yml
24 lines (24 loc) · 1.01 KB
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
language: objective-c
osx_image: xcode7.2
sudo: false
notifications:
email: false
env:
global:
- LC_CTYPE=en_US.UTF-8
- LANG=en_US.UTF-8
matrix:
- DESTINATION="OS=9.2,name=iPhone 6 Plus" SDK=iphonesimulator9.2
- DESTINATION="OS=9.1,name=iPhone 6s" SDK=iphonesimulator9.2
- DESTINATION="OS=9.0,name=iPhone 6 Plus" SDK=iphonesimulator9.2
- DESTINATION="OS=8.4,name=iPhone 6" SDK=iphonesimulator9.2
- DESTINATION="OS=8.3,name=iPhone 5S" SDK=iphonesimulator9.2
- DESTINATION="OS=8.2,name=iPhone 5" SDK=iphonesimulator9.2
- DESTINATION="OS=8.1,name=iPhone 4s" SDK=iphonesimulator9.2
before_install:
- gem install cocoapods --no-rdoc --no-ri --no-document --quiet
- gem install xcpretty --no-rdoc --no-ri --no-document --quiet
- git submodule update
script:
- set -o pipefail
- xcodebuild -workspace examples/app/MDFSpritedAnimationView.xcworkspace -scheme MDFSpritedAnimationView -sdk "$SDK" -destination "$DESTINATION" -configuration Debug ONLY_ACTIVE_ARCH=NO build test | xcpretty -c;