Skip to content

Commit

Permalink
Switch back to xcodebuild in an effort to stop crashing during tests …
Browse files Browse the repository at this point in the history
…on CircleCI
  • Loading branch information
tonyarnold committed Jun 1, 2015
1 parent ee9b0df commit c22807d
Showing 1 changed file with 38 additions and 46 deletions.
84 changes: 38 additions & 46 deletions circle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,49 +9,41 @@ checkout:

test:
override:
- xctool
-reporter pretty
-reporter junit:$CIRCLE_TEST_REPORTS/xcode/results-ios-framework.xml
-reporter plain:$CIRCLE_ARTIFACTS/xctool-ios-framework.log
CODE_SIGNING_REQUIRED=NO
CODE_SIGN_IDENTITY=
PROVISIONING_PROFILE=
-destination 'platform=iOS Simulator,name=iPhone 6,OS=latest'
-sdk iphonesimulator
-project MagicalRecord.xcodeproj
-scheme "MagicalRecord for iOS"
build build-tests run-tests
- xctool
-reporter pretty
-reporter junit:$CIRCLE_TEST_REPORTS/xcode/results-osx-framework.xml
-reporter plain:$CIRCLE_ARTIFACTS/xctool-osx-framework.log
CODE_SIGNING_REQUIRED=NO
CODE_SIGN_IDENTITY=
PROVISIONING_PROFILE=
-sdk macosx
-project MagicalRecord.xcodeproj
-scheme "MagicalRecord for OS X"
build build-tests run-tests
- xctool
-reporter pretty
-reporter junit:$CIRCLE_TEST_REPORTS/xcode/results-ios-static-library.xml
-reporter plain:$CIRCLE_ARTIFACTS/xctool-ios-static-library.log
CODE_SIGNING_REQUIRED=NO
CODE_SIGN_IDENTITY=
PROVISIONING_PROFILE=
-destination 'platform=iOS Simulator,name=iPhone 6,OS=latest'
-sdk iphonesimulator
-project MagicalRecord.xcodeproj
-scheme "libMagicalRecord for iOS"
build build-tests run-tests
- xctool
-reporter pretty
-reporter junit:$CIRCLE_TEST_REPORTS/xcode/results-osx-static-library.xml
-reporter plain:$CIRCLE_ARTIFACTS/xctool-osx-static-library.log
CODE_SIGNING_REQUIRED=NO
CODE_SIGN_IDENTITY=
PROVISIONING_PROFILE=
-sdk macosx
-project MagicalRecord.xcodeproj
-scheme "libMagicalRecord for OS X"
build build-tests run-tests
- xcodebuild
-resultBundlePath "$CIRCLE_TEST_REPORTS/xcode/results-ios-framework"
CODE_SIGNING_REQUIRED=NO
CODE_SIGN_IDENTITY=
PROVISIONING_PROFILE=
-sdk iphonesimulator
-destination 'platform=iOS Simulator,name=iPhone 6,OS=latest'
-project MagicalRecord.xcodeproj
-scheme "MagicalRecord for iOS"
build test
- xcodebuild
-resultBundlePath "$CIRCLE_TEST_REPORTS/xcode/results-osx-framework"
CODE_SIGNING_REQUIRED=NO
CODE_SIGN_IDENTITY=
PROVISIONING_PROFILE=
-sdk macosx
-project MagicalRecord.xcodeproj
-scheme "MagicalRecord for OS X"
build test
- xcodebuild
-resultBundlePath "$CIRCLE_TEST_REPORTS/xcode/results-ios-static-library"
CODE_SIGNING_REQUIRED=NO
CODE_SIGN_IDENTITY=
PROVISIONING_PROFILE=
-sdk iphonesimulator
-destination 'platform=iOS Simulator,name=iPhone 6,OS=latest'
-project MagicalRecord.xcodeproj
-scheme "libMagicalRecord for iOS"
build test
- xcodebuild
-resultBundlePath "$CIRCLE_TEST_REPORTS/xcode/results-osx-dynamic-library"
CODE_SIGNING_REQUIRED=NO
CODE_SIGN_IDENTITY=
PROVISIONING_PROFILE=
-sdk macosx
-project MagicalRecord.xcodeproj
-scheme "libMagicalRecord for OS X"
build test

0 comments on commit c22807d

Please sign in to comment.