-
Notifications
You must be signed in to change notification settings - Fork 29.8k
Roll pub packages #148911
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
Roll pub packages #148911
Conversation
|
auto label is removed for flutter/flutter/148911, due to - The status or check suite Mac_arm64 build_tests_1_4 has failed. Please fix the issues identified (or deflake) before re-applying this label. |
|
@andrewkolos It looks like the flutter tools tests are failing on this version roll. Could you take a look and unblock this? |
|
Looking at the logs of one of the failing checks, it looks like there is some native dependency conflict caused by upgrading stderr from native compilationI need to figure out how to decipher this. |
|
@gmackall I was told you might know what's going on here. Something about a lock file needing to be updated? |
Yes, typically we just need to re-generate gradle lockfiles. I'll take over this PR - it would also be good to make the bot itself re-generate the lockfiles as part of its workflow. Do you (or maybe cc @christopherfujino) know where the bots code lives? I'd be happy to try to make the change myself. |
For somewhat arbitrary reasons, it lives here: https://github.com/flutter/flutter/blob/master/dev/conductor/core/bin/packages_autoroller.dart I would call out to the generate gradle lockfile script somewhere in here: https://github.com/flutter/flutter/blob/master/dev/conductor/core/lib/src/packages_autoroller.dart#L83-L103 |
|
Closing as superseded by #149342 |
Manual recreation of #148911 Entire PR is just the output of ``` flutter update-packages --force-upgrade ``` followed by (run from the root of the flutter repo) ``` find . -type d -name 'android' | dart dev/tools/bin/generate_gradle_lockfiles.dart --no-gradle-generation --no-exclusion ```
Manual recreation of flutter#148911 Entire PR is just the output of ``` flutter update-packages --force-upgrade ``` followed by (run from the root of the flutter repo) ``` find . -type d -name 'android' | dart dev/tools/bin/generate_gradle_lockfiles.dart --no-gradle-generation --no-exclusion ```
This PR was generated by
flutter update-packages --force-upgrade.