Skip to content
This repository has been archived by the owner on Jul 8, 2019. It is now read-only.

Commit

Permalink
Don't code sign integration tests
Browse files Browse the repository at this point in the history
  • Loading branch information
yas375 committed Aug 31, 2016
1 parent fdf384c commit 1cee5c5
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion IntegrationTests/Carthage-OSX/run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@

echo "git \"file://$(cd `pwd`/../.. && pwd)\" \"`git rev-parse HEAD`\"" > Cartfile
carthage update --platform 'OSX'
xcodebuild -scheme Example test | xcpretty && exit ${PIPESTATUS[0]}
xcodebuild -scheme Example test CODE_SIGNING_ALLOWED=NO CODE_SIGNING_REQUIRED=NO | xcpretty && exit ${PIPESTATUS[0]}

2 changes: 1 addition & 1 deletion IntegrationTests/Carthage-iOS/run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@

echo "git \"file://$(cd `pwd`/../.. && pwd)\" \"`git rev-parse HEAD`\"" > Cartfile
carthage update --platform 'ios'
xcodebuild -scheme Example -sdk iphonesimulator test | xcpretty && exit ${PIPESTATUS[0]}
xcodebuild -scheme Example -sdk iphonesimulator test CODE_SIGNING_ALLOWED=NO CODE_SIGNING_REQUIRED=NO | xcpretty && exit ${PIPESTATUS[0]}

2 changes: 1 addition & 1 deletion IntegrationTests/Carthage-tvOS/run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@

echo "git \"file://$(cd `pwd`/../.. && pwd)\" \"`git rev-parse HEAD`\"" > Cartfile
carthage update --platform 'tvos'
xcodebuild -scheme Example -sdk appletvsimulator test | xcpretty && exit ${PIPESTATUS[0]}
xcodebuild -scheme Example -sdk appletvsimulator test CODE_SIGNING_ALLOWED=NO CODE_SIGNING_REQUIRED=NO | xcpretty && exit ${PIPESTATUS[0]}

2 changes: 1 addition & 1 deletion IntegrationTests/Carthage-watchOS/run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@

echo "git \"file://$(cd `pwd`/../.. && pwd)\" \"`git rev-parse HEAD`\"" > Cartfile
carthage update --platform 'watchos'
xcodebuild -scheme 'watchOSApp' | xcpretty && exit ${PIPESTATUS[0]}
xcodebuild -scheme 'watchOSApp' CODE_SIGNING_ALLOWED=NO CODE_SIGNING_REQUIRED=NO | xcpretty && exit ${PIPESTATUS[0]}

2 changes: 1 addition & 1 deletion IntegrationTests/CocoaPods-watchOS/run.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#!/bin/sh -e

bundle exec pod install
xcodebuild -workspace Example.xcworkspace -scheme Example build | xcpretty && exit ${PIPESTATUS[0]}
xcodebuild -workspace Example.xcworkspace -scheme Example build CODE_SIGNING_ALLOWED=NO CODE_SIGNING_REQUIRED=NO | xcpretty && exit ${PIPESTATUS[0]}

0 comments on commit 1cee5c5

Please sign in to comment.