- 27 Jan, 2021 2 commits
-
-
Jonah Williams authored
* opt out the flutter tool * oops EOF * fix import * Update tool_backend.dart * Update daemon_client.dart * fix more
-
Jonah Williams authored
Fixes #74772 stale files from previous SDKs were getting left in the cache, confusing the analyzer.
-
- 20 Jan, 2021 1 commit
-
-
Jonah Williams authored
-
- 14 Jan, 2021 1 commit
-
-
Jonah Williams authored
-
- 04 Dec, 2020 1 commit
-
-
Jenn Magder authored
-
- 01 Dec, 2020 1 commit
-
-
Jonah Williams authored
-
- 11 Nov, 2020 1 commit
-
-
Jonah Williams authored
-
- 06 Nov, 2020 1 commit
-
-
Jonah Williams authored
-
- 05 Nov, 2020 1 commit
-
-
Jonah Williams authored
initialize the flutter root as early as possible. This allows all interfaces to be normally injected into commands, even if those objects might read from the flutter root.
-
- 27 Oct, 2020 1 commit
-
-
Jonah Williams authored
Moves the flutter root initialization to a static method on the cache. This is a small step towards making this functionality non-static and instead injected like normal members - however, completely removing all of the static-ness at once was too large of a change. Instead document and add unit tests and change existing code as little as possible. #47161
-
- 23 Oct, 2020 1 commit
-
-
Jonah Williams authored
There have been some more additional reports of a missing 'package:characters' import after upgrading flutter. This has me concerned that our pub caching logic is incorrect. Instead of the tool attempting to guess when pub should be run, always delegate to pub. Also takes an opportunity to fix the kernel snapshot depending on the .packages or package_config. Due to the generated: date field this causes extra rebuilds. Instead when pub get is run, write out an additional file with just the package contents and version. Fixes #66777 Fixes #65723
-
- 14 Oct, 2020 1 commit
-
-
Jenn Magder authored
-
- 13 Oct, 2020 2 commits
-
-
Jonah Williams authored
Remove "This is taking a long time" progress timeout and TimeoutConfiguration.
-
Jonah Williams authored
All of the network requests from google cloud storage include an x-goog-hash header which contains an MD5 checksum. If present, use to validate that the downloaded binary is valid. This will rule out corrupt files as the cause of getting started crashers in the flutter_tool. #38980 This does not fully resolve the above issue, because while we can check if the checksum matches what was expected from cloud storage, this A) may not necessarily be present and B) may not match up to what should be uploaded as part of the engine build process. But when life gives you lemons you hash those lemons using an outdated hashing algorithm.
-
- 12 Oct, 2020 1 commit
-
-
Jonah Williams authored
HACKTOBERFEST
-
- 07 Oct, 2020 2 commits
-
-
Jonah Williams authored
This reverts commit 76cbc462.
-
Jonah Williams authored
There have been some more additional reports of a missing 'package:characters' import after upgrading flutter, as well as problems with detecting the correct language version. This has me concerned that our pub caching logic is incorrect. Instead of the tool attempting to guess when pub should be run, always delegate to pub.
-
- 06 Oct, 2020 1 commit
-
-
Jonah Williams authored
[flutter_tools] handle case where file is deleted by other program or running on read only volume (#66708) * [flutter_tools] handle case where file is deleted by other program * Add test cases * Update file_system.dart * Update file_system_test.dart * fix import * make a static on ErrorHandligFS * add support for no exit on failure * address comments * update doc comment to file or directory
-
- 05 Oct, 2020 1 commit
-
-
Jonah Williams authored
Any File-derived IOSink may throw un-handleable async exceptions into the zone, see dart-lang/sdk#43663 . Instead, just write to a file with an append mode.
-
- 30 Sep, 2020 1 commit
-
-
Jenn Magder authored
-
- 24 Sep, 2020 1 commit
-
-
Jonah Williams authored
Otherwise the heuristics we have may decide to skip running pub. We should consider reducing the number of dimensions of caching here to a single check optimized for the run/test case.
-
- 23 Sep, 2020 1 commit
-
-
Jonah Williams authored
Delete the destination directory for the web sdk before copying the new contents. This might fix an error where the OS refuses to overwrite the files on dev
-
- 17 Sep, 2020 1 commit
-
-
Jonah Williams authored
[flutter_tools] use flutter tool handler for dwds resources and precache tool pub dependencies (#65814) If the tool is downloaded from a precompiled snapshot, or if the backing source files in the pub cache are deleted, the dwds debugging functionality will break as the client.js file cannot be located. Instead use the PackageConfig to verify that package location, downloading if it is missing. Override the dwds middleware to avoid Isolate.resolvePackageUri Fixes #53644 Fixes #65475
-
- 16 Sep, 2020 1 commit
-
-
Michael R Fairhurst authored
-
- 15 Sep, 2020 2 commits
-
-
Jonah Williams authored
Like the ProcessException thrown from zip running on a bad file, the tool should catch the ArchiveException thrown from windows implementation using package:archive.
-
Jonah Williams authored
Because the Status spinner was only created on setup, the second stop would asset/crash. Fixes #65449
-
- 31 Aug, 2020 1 commit
-
-
Jonah Williams authored
Exit the tool after a repeated network error to download. previously we were returning null and continuing on, leading to a ProcessException when we unzipped a missing file.
-
- 25 Aug, 2020 2 commits
-
-
Jonah Williams authored
Fixes #64246 If decoding the string contents of a stamp file fails, treat it as if the stamp file is missing. This is always safe to do, since at worst it downloads more artifacts. The files could end up corrupted if they were edited by another program, for example
-
Jonah Williams authored
-
- 06 Aug, 2020 1 commit
-
-
Nolan Scobie authored
* Add punctuation for unterminated sentences in doc comments * Addressing review nit
-
- 16 Jul, 2020 1 commit
-
-
Jonah Williams authored
Add feature flags for android, ios, and fuchsia (on by default). After updating the g3 rollers, the fuchsia feature will be turned off by default. Creates a simpler base type of feature flags for g3 to extend. Updates android, ios, fuchsia workflows to use feature flags check. Removes concept of stable artifacts and checks on flutter version. Fixes #58999 #52859 #12768
-
- 08 Jul, 2020 1 commit
-
-
Jonah Williams authored
update flutter precache --force to delete all stamp files. In the event that a user is hitting a cache issue, this should be easier than re-downloading all artifacts or manually blowing away the cache. This is probably how it should have worked in the first place
-
- 16 Jun, 2020 1 commit
-
-
stuartmorgan authored
Updates the tooling to use the GTK embedding, rather than the GLFW embedding: - Adds new requirements to `doctor` - Updates the app and plugin templates to make GTK-based runners and plugins - Stops downloading and installing the GLFW artifacts Final part of #54860, other than cleanup.
-
- 09 Jun, 2020 1 commit
-
-
Jenn Magder authored
-
- 01 Jun, 2020 1 commit
-
-
stuartmorgan authored
-
- 18 May, 2020 1 commit
-
-
stuartmorgan authored
To simplify development of the in-progress GTK embedding, which will replace the GLFW embedding on Linux, add the GTK artifacts to the unpack list. This means that until the transition, both the GLFW and GTK artifacts will be unpacked. Part of #54860
-
- 08 May, 2020 1 commit
-
-
Zachary Anderson authored
-
- 06 May, 2020 1 commit
-
-
Zachary Anderson authored
-
- 25 Apr, 2020 1 commit
-
-
Jonah Williams authored
- Update windows precache to include placeholder profile/release artifacts - Update Linux and windows unpack to account for the cpp_client_wrapper code to live separate from the engine binaries - Cleanup testing in unpack_linux and remove test cases that are covered in build_system_test.dart
-
- 01 Apr, 2020 1 commit
-
-
stuartmorgan authored
Makes the following changes to the behavior of precache: - The --all-platforms flags now fetches all artifacts, rather than just turning off platform filtering of selected artifacts. - Explicitly requested artifacts are no longer subject to platform filtering. E.g., 'precache --ios' will download iOS artifacts on Windows and Linux (but 'precache' without an 'ios' flag will still only download iOS artifacts on macOS). - Desktop platform artifacts now respect the bypassing of platform filtering. Fixes #53272
-