Constructing React Native iOS app in Azure pipeline will get caught at “Compiling LaunchScreen.storyboard”

0
47


Simply because the title says, I attempted to arrange the Azure pipeline that will probably be used to construct my iOS app created with React Native. Putting in dependencies, pods, certificates, all of it goes properly and every part appears to work till pipeline will get to the construct activity which will get caught on the:

▸ Linking MyApp
▸ Compiling LaunchScreen.storyboard

At that time, nothing occurs for an hour till pipeline is ultimately cancelled. For an additional context, constructing my app by Xcode works completely.

That is what my construct activity seems to be like.

- activity: Xcode@5
  displayName: "Xcode construct IPA (manufacturing)"
  inputs:
    actions: 'construct -verbose'
    configuration: 'Launch'
    sdk: 'iphoneos15.5'
    xcWorkspacePath: 'ios/MyApp.xcworkspace'
    scheme: 'MyApp'
    packageApp: true
    exportPath: 'output/bundle'
    archivePath: 'output/archive'
    signingOption: 'guide'    
    signingIdentity: '$(APPLE_CERTIFICATE_SIGNING_IDENTITY)'
    provisioningProfileUuid: '$(APPLE_PROV_PROFILE_UUID)'
    xcodeVersion: 'specifyPath'
    xcodeDeveloperDir: '/Functions/Xcode_13.4.1.app/Contents/Developer'

In case you have any concept what is perhaps the issue, please let me know. Thanks!