forked from LoopKit/Loop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
20 lines (17 loc) · 932 Bytes
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
language: objective-c
osx_image: xcode12.4
cache:
directories:
- Carthage
jobs:
include:
- stage: build carthage
script: set -o pipefail && xcodebuild -project Loop.xcodeproj -target Cartfile | xcpretty
- stage: test build
script: set -o pipefail && xcodebuild -project Loop.xcodeproj -scheme Loop build CODE_SIGN_IDENTITY="" CODE_SIGNING_ALLOWED=NO | xcpretty
- # same stage; parallel
script: set -o pipefail && xcodebuild -project Loop.xcodeproj -scheme Learn build CODE_SIGN_IDENTITY="" CODE_SIGNING_ALLOWED=NO | xcpretty
- # same stage; parallel
script: set -o pipefail && xcodebuild -project Loop.xcodeproj -scheme LoopTests -destination 'platform=iOS Simulator,name=iPhone 8' test EXCLUDED_ARCHS=arm64 | xcpretty
- # same stage; parallel
script: set -o pipefail && xcodebuild -project Loop.xcodeproj -scheme DoseMathTests -destination 'name=iPhone 8' test | xcpretty