-
Notifications
You must be signed in to change notification settings - Fork 2.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[No QA] Upgrade Fastlane #11942
[No QA] Upgrade Fastlane #11942
Conversation
|
Removing @parasharrajat as we don't need a C+ review here and there's nothing for him to test. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
sounds good
|
@sketchydroide looks like this was merged without passing tests. Please add a note explaining why this was done and remove the |
no emerfgency, and this had passed all the tests |
[No QA] Upgrade Fastlane (cherry picked from commit d44c131)
…-11942 🍒 Cherry pick PR #11942 to staging 🍒
🚀 Cherry-picked to staging by @sketchydroide in version: 1.2.18-2 🚀
|
🚀 Deployed to production by @chiragsalian in version: 1.2.18-10 🚀
|
🚀 Cherry-picked to staging by https://github.com/AndrewGable in version: 1.3.28-2 🚀
|
🚀 Deployed to production by https://github.com/AndrewGable in version: 1.3.28-5 🚀
|
Slack context: https://expensify.slack.com/archives/C03V9A4TB/p1666040909653599
Details
We've been seeing a growing amount of flakiness with mobile deploys. This PR upgrades fastlane for iOS and Android deploys to take advantage of various internal bug fixes and improvements in the hopes that it will improve the speed and stability of mobile deploys.
To apply these changes, all I did was
bundle install && bundle update fastlane
. This updates the fastlane gem and all its dependencies.Fixed Issues
$ n/a
Tests
Merge and CP to live-test with a deploy.
PR Review Checklist
PR Author Checklist
### Fixed Issues
section aboveTests
sectionQA steps
sectiontoggleReport
and notonIconClick
)src/languages/*
filesSTYLE.md
) were followedAvatar
, I verified the components usingAvatar
are working as expected)/** comment above it */
this
properly so there are no scoping issues (i.e. foronClick={this.submit}
the methodthis.submit
should be bound tothis
in the constructor)this
are necessary to be bound (i.e. avoidthis.submit = this.submit.bind(this);
ifthis.submit
is never passed to a component event handler likeonClick
)StyleUtils.getBackgroundAndBorderStyle(themeColors.componentBG
)Avatar
is modified, I verified thatAvatar
is working as expected in all cases)PR Reviewer Checklist
The reviewer will copy/paste it into a new comment and complete it after the author checklist is completed
### Fixed Issues
section aboveTests
sectionQA steps
sectiontoggleReport
and notonIconClick
).src/languages/*
filesSTYLE.md
) were followedAvatar
, I verified the components usingAvatar
have been tested & I retested again)/** comment above it */
this
properly so there are no scoping issues (i.e. foronClick={this.submit}
the methodthis.submit
should be bound tothis
in the constructor)this
are necessary to be bound (i.e. avoidthis.submit = this.submit.bind(this);
ifthis.submit
is never passed to a component event handler likeonClick
)StyleUtils.getBackgroundAndBorderStyle(themeColors.componentBG
)Avatar
is modified, I verified thatAvatar
is working as expected in all cases)QA Steps
None