-
Notifications
You must be signed in to change notification settings - Fork 70
Expand file tree
/
Copy pathcircle.yml
More file actions
11 lines (10 loc) · 796 Bytes
/
circle.yml
File metadata and controls
11 lines (10 loc) · 796 Bytes
1
2
3
4
5
6
7
8
9
10
11
machine:
xcode:
version: "9.0"
test:
override:
- set -o pipefail && xcodebuild -project Sugar.xcodeproj -scheme "Sugar-macOS" -sdk macosx clean build
- set -o pipefail && xcodebuild -project Sugar.xcodeproj -scheme "Sugar-iOS" -sdk iphonesimulator clean build
- set -o pipefail && xcodebuild -project Sugar.xcodeproj -scheme "Sugar-iOS" -sdk iphonesimulator -destination 'platform=iOS Simulator,name=iPhone 8,OS=11.0.1' -enableCodeCoverage YES test
- set -o pipefail && xcodebuild -project Sugar.xcodeproj -scheme "Sugar-tvOS" -destination 'platform=tvOS Simulator,name=Apple TV,OS=11.0' clean build
- set -o pipefail && xcodebuild -project Sugar.xcodeproj -scheme "Sugar-tvOS" -destination 'platform=tvOS Simulator,name=Apple TV,OS=11.0' -enableCodeCoverage YES test