[ci] Cumulative fixes to reopen the tree. (#8344)

This PR fixes a couple of issues that have popped up in the CI of the tree in the last couple of days:

1. Disables some Android video_player tests that require network access.
2. Fixes our internal tool after a breaking change was made in an upstream dependency.

## Issues

* Mitigates https://github.com/flutter/flutter/issues/160797
* Fixes https://github.com/flutter/flutter/issues/160799
This commit is contained in:
David Iglesias
2024-12-23 15:24:22 -08:00
committed by GitHub
parent 3515abab07
commit dcf789f424
8 changed files with 34 additions and 16 deletions

View File

@ -488,9 +488,9 @@ class PubspecCheckCommand extends PackageLoopingCommand {
}
final Version? dartConstraintMin =
_minimumForConstraint(pubspec.environment?['sdk']);
_minimumForConstraint(pubspec.environment['sdk']);
final Version? flutterConstraintMin =
_minimumForConstraint(pubspec.environment?['flutter']);
_minimumForConstraint(pubspec.environment['flutter']);
// Validate the Flutter constraint, if any.
if (flutterConstraintMin != null && minMinFlutterVersion != null) {