Hi,
Since i managed to pull off a CI workflow on one of my own repository using appveyor, i thought i'd clone your repo, and try to figure out away to automatically run the xcode build whenever someone pushed.
I manage to run an OS X machine with xcode and xcode command line tools installed, which is a good start.
However, i'm getting the following issue when trying to build after cloning the repo:
bash-3.2$ sudo xcodebuild -target BattleBuddy
Command line invocation:
/Applications/Xcode-12.3.app/Contents/Developer/usr/bin/xcodebuild -target BattleBuddy
note: Using new build system
note: Planning build
note: Using build description from disk
error: /Users/appveyor/BattleBuddy/iOS/Pods/Target Support Files/Pods-BattleBuddy/Pods-BattleBuddy.release.xcconfig: unable to open file (in target "BattleBuddy" in project "BattleBuddy") (in target 'BattleBuddy' from project 'BattleBuddy')
error: /Users/appveyor/BattleBuddy/iOS/Pods/Target Support Files/Pods-BattleBuddy/Pods-BattleBuddy.release.xcconfig: unable to open file (in target "BattleBuddy" in project "BattleBuddy") (in target 'BattleBuddy' from project 'BattleBuddy')
error: /Users/appveyor/BattleBuddy/iOS/Pods/Target Support Files/Pods-BattleBuddy/Pods-BattleBuddy.release.xcconfig: unable to open file (in target "BattleBuddy" in project "BattleBuddy") (in target 'BattleBuddy' from project 'BattleBuddy')
error: No profiles for 'com.veritas.BattleBuddy' were found: Xcode couldn't find any iOS App Development provisioning profiles matching 'com.veritas.BattleBuddy'. Automatic signing is disabled and unable to generate a profile. To enable automatic signing, pass -allowProvisioningUpdates to xcodebuild. (in target 'BattleBuddy' from project 'BattleBuddy')
error: Unable to load contents of file list: '/Target Support Files/Pods-BattleBuddy/Pods-BattleBuddy-frameworks-Release-input-files.xcfilelist' (in target 'BattleBuddy' from project 'BattleBuddy')
error: Unable to load contents of file list: '/Target Support Files/Pods-BattleBuddy/Pods-BattleBuddy-frameworks-Release-output-files.xcfilelist' (in target 'BattleBuddy' from project 'BattleBuddy')
warning: Unable to read contents of XCFileList '/Target Support Files/Pods-BattleBuddy/Pods-BattleBuddy-frameworks-Release-output-files.xcfilelist' (in target 'BattleBuddy' from project 'BattleBuddy')
error: Building for iOS, but the linked and embedded framework 'BallisticsEngine.framework' was built for iOS + iOS Simulator. (in target 'BattleBuddy' from project 'BattleBuddy')
I'm not iOS dev so if you guys can find some time to spare helping me storting this out?
From what i see
- some files are either missing or fails to be created
- missing dev credentials or whatnot, but can be bypassed?
- The BattleBuddy target specifies an iOS build, but the framework is for iOS + simulator, so it can't be used there
Am i missing something using the CLI to build the app, or is a target for iOS + simulator missing?
Idk if this is top priority for you but eh, i thought i'd make the post anyway and wait for your take on the matter :)
Hi,
Since i managed to pull off a CI workflow on one of my own repository using appveyor, i thought i'd clone your repo, and try to figure out away to automatically run the xcode build whenever someone pushed.
I manage to run an OS X machine with xcode and xcode command line tools installed, which is a good start.
However, i'm getting the following issue when trying to build after cloning the repo:
bash-3.2$ sudo xcodebuild -target BattleBuddy Command line invocation: /Applications/Xcode-12.3.app/Contents/Developer/usr/bin/xcodebuild -target BattleBuddy note: Using new build system note: Planning build note: Using build description from disk error: /Users/appveyor/BattleBuddy/iOS/Pods/Target Support Files/Pods-BattleBuddy/Pods-BattleBuddy.release.xcconfig: unable to open file (in target "BattleBuddy" in project "BattleBuddy") (in target 'BattleBuddy' from project 'BattleBuddy') error: /Users/appveyor/BattleBuddy/iOS/Pods/Target Support Files/Pods-BattleBuddy/Pods-BattleBuddy.release.xcconfig: unable to open file (in target "BattleBuddy" in project "BattleBuddy") (in target 'BattleBuddy' from project 'BattleBuddy') error: /Users/appveyor/BattleBuddy/iOS/Pods/Target Support Files/Pods-BattleBuddy/Pods-BattleBuddy.release.xcconfig: unable to open file (in target "BattleBuddy" in project "BattleBuddy") (in target 'BattleBuddy' from project 'BattleBuddy') error: No profiles for 'com.veritas.BattleBuddy' were found: Xcode couldn't find any iOS App Development provisioning profiles matching 'com.veritas.BattleBuddy'. Automatic signing is disabled and unable to generate a profile. To enable automatic signing, pass -allowProvisioningUpdates to xcodebuild. (in target 'BattleBuddy' from project 'BattleBuddy') error: Unable to load contents of file list: '/Target Support Files/Pods-BattleBuddy/Pods-BattleBuddy-frameworks-Release-input-files.xcfilelist' (in target 'BattleBuddy' from project 'BattleBuddy') error: Unable to load contents of file list: '/Target Support Files/Pods-BattleBuddy/Pods-BattleBuddy-frameworks-Release-output-files.xcfilelist' (in target 'BattleBuddy' from project 'BattleBuddy') warning: Unable to read contents of XCFileList '/Target Support Files/Pods-BattleBuddy/Pods-BattleBuddy-frameworks-Release-output-files.xcfilelist' (in target 'BattleBuddy' from project 'BattleBuddy') error: Building for iOS, but the linked and embedded framework 'BallisticsEngine.framework' was built for iOS + iOS Simulator. (in target 'BattleBuddy' from project 'BattleBuddy')I'm not iOS dev so if you guys can find some time to spare helping me storting this out?
From what i see
Am i missing something using the CLI to build the app, or is a target for iOS + simulator missing?
Idk if this is top priority for you but eh, i thought i'd make the post anyway and wait for your take on the matter :)