fastlane / fastlane

🚀 The easiest way to automate building and releasing your iOS and Android apps
https://fastlane.tools
MIT License
39.72k stars 5.72k forks source link

Issue Signing openssl_grpc.framework (in target ...) #26597

Closed carlosclarika closed 1 month ago

carlosclarika commented 1 month ago

New Issue Checklist

Issue Description

After upgrade Fastlane to 2.225 latest version I got stuck on the signing frameworks stage of BUILD the app

Command executed
desc "Build Beta TestFlight"
  lane :build_testflight do
    update_environment()
    build_app(
      scheme: "ZYRLUserApp",
      clean: true,
      destination: "platform=iOS Simulator,name=iPhone 15 Pro Max,OS=17.4",
      export_options: {
        method: "app-store",
        testFlightInternalTestingOnly: true
      }
    )
  end
Complete output when running fastlane, including the stack trace and command used
 
  ```
desc "Build Beta TestFlight"
  lane :build_testflight do
    update_environment()
    build_app(
      scheme: "ZYRLUserApp",
      clean: true,
      destination: "platform=iOS Simulator,name=iPhone 15 Pro Max,OS=17.4",
      export_options: {
        method: "app-store",
        testFlightInternalTestingOnly: true
      }
    )
  end
```
 

Stuck for 1 hour or more in the line: INFO [2024-10-21 19:36:17.86]: ▸ Signing openssl_grpc.framework (in target 'ZYRLUserApp' from project 'REVIUserApp')

NOTE: This was working on Friday on version 2.224 of Fastlane so must be related to the recent update

Screenshot 2024-10-21 at 4 28 04 PM

Environment

FASTLANE 2.225

carlosclarika commented 1 month ago

I found that it was a problem inside GitHub Actions because running locally it worked and after a few tries worked on GitHub Actions as well.

Screenshot 2024-10-21 at 5 23 57 PM Screenshot 2024-10-21 at 5 24 09 PM