Questions tagged [fastlane-gym]

62 questions
20
votes
2 answers

Xcodebuild - Skip Finished requesting crash reports. Continuing with testing

I'm running a CI machine with the Xcode. The tests are triggered using fastlane gym. I see this line in the output: 2019-05-27 16:04:28.417 xcodebuild[54605:1482269] [MT] IDETestOperationsObserverDebug: (A72DBEA3-D13E-487E-9D04-5600243FF617) …
Richard Topchii
  • 7,075
  • 8
  • 48
  • 115
10
votes
4 answers

Fastlane Beta: Bundler::GemNotFound: Could not find CFPropertyList-3.0.0 in any of the sources

Running fastlane beta and getting this error: Bundler::GemNotFound: Could not find CFPropertyList-3.0.0 in any of the sources I tried installing the gem through the terminal, adding it to my gemfile, updating my fastlane version... no luck. Any…
Alec Lorraine
  • 388
  • 2
  • 9
7
votes
1 answer

How can I use flutter's "--obfuscate" flag with fastlane on iOS

I have a fastlane lane that builds the app using gym or build_app but I also want to use flutter build's --obfuscate flag. desc "Build - Enterprise" lane :build_enterprise do |options| bundle_id = options[:bundle_id] …
Rohan Taneja
  • 9,687
  • 3
  • 36
  • 48
6
votes
1 answer

How to handle multiple iOS targets (widgets) in fastlane

I'm trying to add widgets to our project and fastlane isn't able to automate anymore. How do I edit the widget bundle identifier in fastlane How do I set the right provisioning profile for the right target Things I need: in xcode the app target…
ir2pid
  • 5,604
  • 12
  • 63
  • 107
5
votes
0 answers

iOS Fastlane Match codesigning issue

My xcodeproject has the signing release set as "match Adhoc teamid" This works fine when building adhoc releases, match installs adhoc provisioning profiles and gym uses it. But using appstore release match correctly installs appstore provisioning…
ir2pid
  • 5,604
  • 12
  • 63
  • 107
5
votes
1 answer

Set Xcode automatic signing to false and set provision profile and certificate with fastlane match and gym

We use Fusetools to build an app. Using the command uno build --target=ios --configuration=Release we generate a new myapp.xcodeproj file for the app. When I open the .xcodeproj in Xcode IDE manually I see the Automatically manage signing checkbox…
chrisva
  • 625
  • 9
  • 17
3
votes
0 answers

Fastlane gym: error with status code 65 and no clear output

I have been struggling with this Github Action using Fastlane and match for iOS deployment to TestFlight of a flutter app. Everything started to break when I changed laptop and forgot the keychain password. I nuked all previous certificates and…
alexlipa
  • 1,131
  • 2
  • 12
  • 27
3
votes
0 answers

iOS Fastlane Gym - Extra Incorrect Provisioning Profile When Building App

I'm in the process of setting up Fastlane so that it uses manual provisioning profiles, which i'm managing via Match. Match is set up and working fine, and i've managed to set the correct provisioning profiles correctly in XCode via XCConfig files…
Strafe86
  • 31
  • 3
3
votes
1 answer

CodeSign Error while building iOS pipeline through Jenkins and Fastlane

I am trying to build iOS app using Jenkins and Fastlane. Jenkins master is a Linux machine and slave is a macOS machine, both running on AWS. Project repository is hosted on Gitlab. When the pipeline is run through Jenkins, it gives the following…
3
votes
0 answers

FASTLANE ipa size double xcode

Fastlane gym produces ipa double the size of Xcode. Have skipped symbols and bitcode as well but still the size is around double, also tried app thinning for all variants, no luck. Any idea on how to tweak that?
3
votes
1 answer

Fastlane match build adhoc and appstore

I'm using Fastlane match and gym for building and distributing my app from a CI (Bitrise) to Fabric. My Xcode settings are set to manual with a Release configuration using the AdHoc profile as described in the Fastlane docs Now I want to distribute…
Jan
  • 7,444
  • 9
  • 50
  • 74
3
votes
2 answers

Fastlane gym fails after adding cocoapods dependency

Although I installed the gem "cocoapods" and did the "pod install" command in the correct directory (platforms/ios in my case, because we are building an IONIC app), my build which is using fastlane gym fails with this message: library not found for…
anha1979
  • 199
  • 1
  • 3
  • 15
3
votes
1 answer

How to compile an iOS project from command line

I want to assemble/compile a workspace with cocoapods on it but without: Archiving. Need to setup credentials or pem files. Something like: xcodebuild assemble I want to know if the code compiles but not generate an archive or a deployed…
Daniel Gomez Rico
  • 15,026
  • 20
  • 92
  • 162
3
votes
1 answer

Take parameters from fastlane argument

Fastlane file look like this lane :build do |options| scheme = options[:scheme] puts scheme end But the output of puts is coming blank whenever I pass any value in it. I am calling the fast lane like this from terminal :- fastlane build…
Vizllx
  • 9,135
  • 1
  • 41
  • 79
2
votes
1 answer

CircleCI fastlane gym - bundler: failed to load command: fastlane

Setting up CircleCI Pipeline for ios build using fastlane. I'm running into an issue with the gym build process as per below with the gym process that's displaying the error message - bundler: failed to load command: fastlane…
1
2 3 4 5