-
Notifications
You must be signed in to change notification settings - Fork 306
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
ios build: Take auto updates to Podfile.lock and an Xcode file #1444
ios build: Take auto updates to Podfile.lock and an Xcode file #1444
Conversation
(Ah, I suggested "ios build" as a summary-line prefix because I was thinking of the Xcode config changes as a separate commit. I agree with your first thought that "ios deps" is a good prefix for the Podfile.lock changes.) |
@@ -26,6 +26,7 @@ | |||
buildConfiguration = "Debug" | |||
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB" | |||
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB" | |||
customLLDBInitFile = "$(SRCROOT)/Flutter/ephemeral/flutter_lldbinit" |
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.
Looking at this line more closely, the content of it sounds like something the flutter
tool might put there.
And indeed, git log -G flutter_lldbinit
in the Flutter tree finds this from earlier this month, 2025-03-06:
flutter/flutter@eb07c51
So this is a side effect of the Flutter upgrade in #1426.
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.
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.
Cool, makes sense.
And yeah, agreed on both points re #773.
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.
Made a note of that on #773, and bumped it up to M5b (from M6).
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.
Tested on iOS Simulator, and don't see any automated changes being made when running on macOS.
Greg found that this is a side effect of the Flutter upgrade in PR zulip#1426: zulip#1444 (comment) > And indeed, `git log -G flutter_lldbinit` in the Flutter tree > finds this from earlier this month, 2025-03-06: > flutter/flutter@eb07c5123 Committing it here, after building for iOS, which we forgot to do when preparing that PR.
These are needed because zulip#1426 didn't include the `pod` step of `tools/upgrade`. Done by building for iOS, then (when I remembered that macOS/Podfile.lock needs updating too) `tools/upgrade pod`.
0dd9eda
to
16e4d88
Compare
Thanks for the reviews! Revision pushed. |
Thanks both! Looks good; merging. |
I think the Podfile.lock changes are needed because #1426 didn't include the
pod
step oftools/upgrade
.I suspect the Xcode-file update is due to an Xcode upgrade.
Done by building for iOS, with Xcode 16.2 (16C5032a), then (when I remembered that macOS/Podfile.lock needs updating too)
tools/upgrade pod
.cc @rajveermalviya as the author of #1426.