MasterFastfile
MasterFastfile copied to clipboard
Master Fastfile used for internal builds
https://github.com/theappbusiness/MasterFastfile/blob/develop/Fastfile#L186 `lane_context[SharedValues::APPCENTER_BUILD_INFORMATION]` The line above is referencing the entire build information, rather than the `install_url`. Which will also need decoding I believe. There is a lane context for `APPCENTER_DOWNLOAD_LINK` but...
* Now using `fastlane-plugin-test_center` for UI tests - https://github.com/lyndsey-ferguson/fastlane-plugin-test_center * Added new (optional) environment variable `MULTI_SCAN_TRY_COUNT` to set the number of times a test is retried before it's considered a...
I don't know what this is: `Time.now.strftime("%y%m%d%H%M") # rubocop:disable Style/StringLiterals` But it isn't a unix timestamp... It should be replaced by: `Time.now.to_i`
I propose a new lane:- PRChecker This lane will be similar to the test lane with one enhancement, it will checkout the latest version of the target branch and merge...
The wiki is out of date, across a few topics such as environment variables and lanes. Also worth a review of what environment variables we use
Add more info around the ENV variables that need to be set and maybe where best to set them (examples)
At the bottom of the Fastfile, we have this: ```ruby error do |lane, exception| end ``` Is there a plan to implement handling here? If not, is there any point...