È 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
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) –