- 09 Mar, 2018 1 commit
-
-
Alexander Aprelev authored
* Update dependencies with forced upgrade. Now that https://github.com/flutter/flutter/issues/15261 is fixed, do the update with upgrade. * Update test package use following upgrade * Replace addOption(allowMultiple) with addMultiOption
-
- 08 Mar, 2018 1 commit
-
-
Alexander Aprelev authored
This is needed to fix 'flutter test --preview-dart-2 test/all.dart' in dev/devicelab
-
- 05 Mar, 2018 1 commit
-
-
Alexander Aprelev authored
* Run dev/bots/test's flutter drive test in preview-dart-2 * Fix extension callback type * More type fixes
-
- 01 Mar, 2018 3 commits
-
-
Alexander Aprelev authored
* Run flutter tests in preview-dart-2 mode on travis flutter builds. * Run dart2 tests on osx. Run dart tests in dart2. * Fix name camelCase * Default options to empty array, rather than null * Troubleshoot failures * More logging * Troubleshoot: run single test * Troubleshoot: run 15 tests * Troubleshoot: run 15 tests with fix * Try limit concurrency to 1 * Limit concurrency for preview-dart-2 tests to 4 * Move dart2 tests to allow_failures section * Reinstate tests_dart_2 shard * Raise concurrency to 8 * Reuse compiler across multiple test runs * Allow to switch entry points when recompiling. Actually use single compiler to incrementally recompile all tests executed by 'flutter test'. * Remove leftover commented code * Fix comment * Lints
-
xster authored
-
Todd Volkert authored
Fixes https://github.com/flutter/flutter/issues/15002
-
- 27 Feb, 2018 2 commits
-
-
jcollins-g authored
-
Greg Spencer authored
We can't use .tar.xz on Mac because although it can unpack them on the command line (with tar), the "Archive Utility" that runs when you double-click on them just does some crazy behavior (it converts it to a compressed cpio archive, and when you double-click on that, it converts it back to .tar.xz, without ever unpacking it!) So, this changes the script to use .zip for Mac, and the files are about 220MB larger than they need to be.
-
- 23 Feb, 2018 1 commit
-
-
Jason Simmons authored
30+4 has made some changes to the remoting protocol that are incompatbile with a test harness running 30+3 (e.g. adding a type='initial' field to the first message)
-
- 22 Feb, 2018 1 commit
-
-
Greg Spencer authored
-
- 14 Feb, 2018 1 commit
-
-
Alexander Aprelev authored
* Use engine-built dart sdk * Download dart-sdk from engine * Move up deps to fix dart sdk constraint problem * Update update_dart_sdk.ps1 for Windows * Fix tests so they pass analysis * More types for tests * Roll engine * Update dart sdk stamp location in flutter.bat * Add newline
-
- 13 Feb, 2018 2 commits
-
-
xster authored
-
Ian Hickson authored
This sets things up so that when we next roll a dev build to beta, it updates the docs. This means that for a while (until we publish a beta) the dev docs will not be updating.
-
- 10 Feb, 2018 2 commits
-
-
Chris Bracken authored
Ensures we don't regress https://github.com/flutter/flutter/issues/6577.
-
xster authored
* More restricted versioning on iOS * Escape the key base64 and don't echo it back on travis * Have match not print back the cert url
-
- 09 Feb, 2018 3 commits
-
-
Greg Spencer authored
When uploading, gsutil is guessing wrong about our desired MIME types. This makes it explicit.
-
jcollins-g authored
-
Vyacheslav Egorov authored
We need to pull in Dart 2 compliant mockito Fixes #14532
-
- 07 Feb, 2018 2 commits
-
-
Greg Spencer authored
I wanted to run a "real command" as part of the test, but in the interest of fixing the build, I'm just removing the test.
-
Greg Spencer authored
There were some problems I introduced with the last PR for this. It passed the test, but failed in practice. This adds tests for those failure cases, adds a "--help" and fixes the test so that it doesn't try and actually download MinGit as part of the Windows test. I added package:platform as a dependency, so I did a force upgrade on the packages. Also, re-enabling 'create package' in the cache warming code, now that #14448 is fixed.
-
- 06 Feb, 2018 3 commits
-
-
Greg Spencer authored
This changes the publishing of archives so that it happens on the chrome_infra bots when they build a packaged branch instead of as part of the dev_roll process. It uses the tagged version in the branch, and leaves the git repo that it clones checked out on the branch and hash used to build the package. It updates metadata located at gs://flutter_infra/releases/releases_.json (where is one of macos, linux, or windows) once published, since it would be complex to do the proper locking to keep them all in one shared .json file safely. A separate [change to the chrome_infra bots](https://chromium-review.googlesource.com/c/chromium/tools/build/+/902823) was made to instruct them to build packaged for the dev, beta, and release branches (but not master anymore).
-
xster authored
* Keep the intermediate APK signed the same way before going to the play store * Don't run on PRs
-
xster authored
-
- 05 Feb, 2018 3 commits
-
-
xster authored
-
Alexandre Ardhuin authored
-
xster authored
* iOS works * Works on Android * Take in commit number in iOS also. Get rid of image upload for Android. It's just a waste of bandwidth * Tweak to fix on Travis
-
- 02 Feb, 2018 1 commit
-
-
Alexandre Ardhuin authored
-
- 30 Jan, 2018 2 commits
-
-
Ian Hickson authored
-
Ian Hickson authored
It adds lines like `SHARD=analyze` to each shard, and a message like `Contents of packages/flutter_localizations/lib/src/l10n/localizations.dart matches output of gen_localizations.dart script.` to the analysis shard.
-
- 27 Jan, 2018 1 commit
-
-
Ian Hickson authored
Fixes https://github.com/flutter/flutter/issues/14232 (I haven't tested this with older versions of git, I'm just going on what @jason-simmons wrote in the bug.)
-
- 26 Jan, 2018 1 commit
-
-
Vyacheslav Egorov authored
* Unpin package:test and upgrade packages * Update packages/flutter/test/foundation/stack_trace_test.dart * Also add packages/flutter_tools/test/data/asset_test/font/.dartignore to ensure that update-packages --force-upgrade does not crash.
-
- 20 Jan, 2018 2 commits
-
-
Ian Hickson authored
* Move the splitting of licenses to an isolate This improves (from horrific to terrible) the performance of the license screen. It also introduces a feature in the foundation layer to make using isolates for one-off computations easier. The real problem that remains with this, though, is that transfering data between isolates is a stop-the-world operation and can take an absurd amount of time (far more than a few milliseconds), so we still skip frames. More work thus remains to be done. * - Add profile instrumentation to the isolate compute() method - Add profile instrumentation to the LicensePage - Add profile instrumentation to the scheduleTask method - Make scheduleTask support returning a value - Make the license page builder logic use scheduled tasks so that it doesn't blow the frame budget
-
Ian Hickson authored
-
- 19 Jan, 2018 1 commit
-
-
Sam Rawlins authored
-
- 17 Jan, 2018 2 commits
-
-
Ian Hickson authored
-
jcollins-g authored
-
- 12 Jan, 2018 1 commit
-
-
Sam Rawlins authored
-
- 11 Jan, 2018 1 commit
-
-
Jason Simmons authored
-
- 10 Jan, 2018 2 commits
-
-
Leaf Petersen authored
Rolling the Dart SDK to 2.0, with associated package updates. https://groups.google.com/forum/#!topic/flutter-dev/E22RdKAYjs8
-
Michael Goderbauer authored
* Revert "Reverting package changes until I can figure out how to fix Windows. (#14007)" This reverts commit 6fda8ee8. * Make prepare_package run on Windows
-