2016-03-26 15 views
6

È un progetto Framework (SWIFT) che crea una libreria (modulo .framework) da collegare ai progetti insieme ai test di unità e termina con i seguenti errori.Progetto quadro Non è possibile utilizzare un dispositivo di sola generazione per eseguire questa destinazione

** BUILD SUCCEEDED ** 
xcodebuild: error: Failed to build project HelloWorld with scheme HelloWorld. 
    Reason: A build only device cannot be used to run this target. 
The command "xcodebuild clean build test -project HelloWorld.xcodeproj -scheme HelloWorld CODE_SIGN_IDENTITY="" CODE_SIGNING_REQUIRED=NO" exited with 70. 

Il mio file Travis yml è

language: objective-c 

branches: 
only: 
- master 

xcode_project: HelloWorld.xcodeproj 
xcode_scheme: HelloWorld 
osx_image: xcode7.2 

script: 
- xcodebuild clean build test -project HelloWorld.xcodeproj -scheme HelloWorld CODE_SIGN_IDENTITY="" 
    CODE_SIGNING_REQUIRED=NO 
+0

Possibile duplicato di [Un dispositivo solo build non può essere utilizzato per eseguire questa destinazione] (https://stackoverflow.com/questions/33747828/a-build-solo-device-can not-be-usato-to-run-questo-target) –

risposta

2

Per Xcode 7,2

Prova ad aggiungere -destination 'piattaforma = simulatore iOS, iPhone name = 6, OS = 9.0'

script: - xcodebuild clean build test -project HelloWorld.xcodeproj -scheme HelloWorld CODE_SIGN_IDENTITY = "" CODE_SIGNING_REQUIRED = NO piattaforma -destinazione = iOS Simulator, nome = iPhone 6, OS = 9.0 '