-
Notifications
You must be signed in to change notification settings - Fork 205
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #30 from ishkawa/circleci-xcode63
Update circle.yml for Xcode 6.3
- Loading branch information
Showing
2 changed files
with
18 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,25 @@ | ||
machine: | ||
xcode: | ||
version: "6.3.1" | ||
environment: | ||
LC_CTYPE: en_US.UTF-8 | ||
|
||
dependencies: | ||
override: | ||
#- ./script/import-certificates | ||
#- sudo gem install cocoapods | ||
#- sudo gem install xcpretty | ||
#- brew install carthage | ||
#- carthage bootstrap | ||
- echo "skip installing dependencies until Circle CI supports Xcode 6.3 (with Swift 1.2)." | ||
- sudo chown :wheel "/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS 7.1.simruntime/Contents/Resources/RuntimeRoot/usr/lib/dyld_sim" | ||
- sudo chown :wheel "/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS 8.1.simruntime/Contents/Resources/RuntimeRoot/usr/lib/dyld_sim" | ||
- sudo chown :wheel "/Library/Developer/CoreSimulator/Profiles/Runtimes/iOS 8.2.simruntime/Contents/Resources/RuntimeRoot/usr/lib/dyld_sim" | ||
- ./script/import-certificates | ||
- sudo gem install cocoapods | ||
- sudo gem install xcpretty | ||
- brew update | ||
- brew install carthage | ||
- carthage bootstrap | ||
|
||
test: | ||
override: | ||
#- ./script/check-carthage-compatibility | ||
#- pod lib lint | ||
#- set -o pipefail && xcodebuild test -scheme APIKit-iOS | xcpretty -c -r junit -o $CIRCLE_TEST_REPORTS/test-report-ios.xml | ||
#- set -o pipefail && xcodebuild test -scheme APIKit-Mac | xcpretty -c -r junit -o $CIRCLE_TEST_REPORTS/test-report-mac.xml | ||
#- set -o pipefail && xcodebuild build -scheme DemoApp -sdk iphonesimulator | xcpretty -c | ||
- echo "skip testing until Circle CI supports Xcode 6.3 (with Swift 1.2)." | ||
|
||
- ./script/check-carthage-compatibility | ||
- pod lib lint --allow-warnings | ||
- set -o pipefail && xcodebuild test -scheme APIKit-iOS | xcpretty -c -r junit -o $CIRCLE_TEST_REPORTS/test-report-ios.xml | ||
- set -o pipefail && xcodebuild test -scheme APIKit-Mac | xcpretty -c -r junit -o $CIRCLE_TEST_REPORTS/test-report-mac.xml | ||
- set -o pipefail && xcodebuild build -scheme DemoApp -sdk iphonesimulator | xcpretty -c |