forked from xmartlabs/XLActionController
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.travis.yml
More file actions
executable file
·15 lines (13 loc) · 774 Bytes
/
Copy path.travis.yml
File metadata and controls
executable file
·15 lines (13 loc) · 774 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
language: objective-c
osx_image: xcode7.2b3
env:
- DESTINATION="OS=9.2,name=iPhone 6" SCHEME="XLActionController" SDK=iphonesimulator9.2
before_install:
- gem install xcpretty --no-rdoc --no-ri --no-document --quiet
script:
- set -o pipefail
- xcodebuild -version
- xcodebuild -project XLActionController.xcodeproj -scheme "$SCHEME" -sdk "$SDK" -destination "$DESTINATION"
-configuration Debug ONLY_ACTIVE_ARCH=NO test | xcpretty -c
- xcodebuild -project Example.xcodeproj -scheme "Example" -sdk "$SDK" -destination "$DESTINATION" -configuration Debug ONLY_ACTIVE_ARCH=NO build | xcpretty -c
- xcodebuild -project Example.xcodeproj -scheme "Example" -sdk "$SDK" -destination "$DESTINATION" -configuration Release ONLY_ACTIVE_ARCH=NO build | xcpretty -c