-
Notifications
You must be signed in to change notification settings - Fork 1
/
.travis.yml
30 lines (25 loc) · 1.49 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
25
26
27
28
29
30
osx_image: xcode8.1
language: objective-c
podfile: Example/Podfile
notifications:
email: false
before_install:
- pod update --project-directory=Example/
env:
global:
- LANG=en_US.UTF-8
- COCOAPODS_DISABLE_DETERMINISTIC_UUIDS=true
cache:
- bundler
- cocoapods
script:
- set -o pipefail
- pod install --project-directory=Example
- xcodebuild -workspace Example/APIKitExt.xcworkspace -scheme "ObjectMapper Sample" CODE_SIGNING_REQUIRED=NO CODE_SIGN_IDENTITY="" | xcpretty -c
- xcodebuild -workspace Example/APIKitExt.xcworkspace -scheme "Argo Sample" CODE_SIGNING_REQUIRED=NO CODE_SIGN_IDENTITY="" | xcpretty -c
- xcodebuild -workspace Example/APIKitExt.xcworkspace -scheme "SwiftyJSON Sample" CODE_SIGNING_REQUIRED=NO CODE_SIGN_IDENTITY="" | xcpretty -c
- xcodebuild -workspace Example/APIKitExt.xcworkspace -scheme "Himotoki Sample" CODE_SIGNING_REQUIRED=NO CODE_SIGN_IDENTITY="" | xcpretty -c
- xcodebuild -workspace Example/APIKitExt.xcworkspace -scheme "ModelMapper Sample" CODE_SIGNING_REQUIRED=NO CODE_SIGN_IDENTITY="" | xcpretty -c
- xcodebuild -workspace Example/APIKitExt.xcworkspace -scheme "JASON Sample" CODE_SIGNING_REQUIRED=NO CODE_SIGN_IDENTITY="" | xcpretty -c
- xcodebuild -workspace Example/APIKitExt.xcworkspace -scheme "Unbox Sample" CODE_SIGNING_REQUIRED=NO CODE_SIGN_IDENTITY="" | xcpretty -c
- xcodebuild build-for-testing test-without-building -workspace Example/APIKitExt.xcworkspace -scheme "Himotoki Sample Tests" -destination 'name=iPhone 7' | xcpretty -c