- 28 Sep, 2021 1 commit
-
-
Greg Spencer authored
This adds a smoke test for every single API example. It also fixes 17 tests that had bugs in them, or were otherwise broken, and even fixes one actual bug in the framework, and one limitation in the framework. The bug in the framework is that NetworkImage's _loadAsync method had await response.drain<List<int>>();, but if the response is null, it will throw a cryptic exception saying that Null can't be assigned to List<int>. The fix was just to use await response.drain<void>(); instead. The limitation is that RelativePositionedTransition takes an Animation<Rect> rect parameter, and if you want to use a RectTween with it, the value emitted there is Rect?, and one of the examples was just casting from Animation<Rect> to Animation<Rect?>, which is invalid, so I modified RelativePositionedTransition to take a Rect? and just use Rect.zero if the rect is null.
-
- 08 Sep, 2021 1 commit
-
-
Greg Spencer authored
Switch to Debian bullseye, update nodejs to npm package, add flutter desktop run dependencies (#89309) This change updates the Dockerfile for Cirrus builds: - Switch to a newer stable Debian build (bullseye instead of stretch) - Eliminates the very old (10) nodejs install in favor of the npm package - Installs OpenJDK so that Android SDK manager can run on bullseye - Installs the prerequisites for Linux desktop flutter run. The motivation for this change was to include the dependencies for Linux desktop flutter run so that I can run tests that use desktop Flutter apps, but that needs cmake 3.10 or later, and stretch doesn't have a cmake that new. Of course, there's also no openjdk-8-jre for bullseye, so I used OpenJDK from JFrog instead.
-
- 15 May, 2021 1 commit
-
-
godofredoc authored
* Add cmdline tools to docker image. This is to make the flutter doctor new checks to pass. Bug: https://github.com/flutter/flutter/issues/82565 * Use correct package name. * Add version to sdkmanager command.
-
- 19 Mar, 2021 1 commit
-
-
godofredoc authored
-
- 08 Oct, 2020 1 commit
-
-
Kate Lovett authored
-
- 06 Oct, 2020 1 commit
-
-
keyonghan authored
-
- 20 Aug, 2020 1 commit
-
-
xster authored
-
- 08 Aug, 2020 1 commit
-
-
Christopher Fujino authored
-
- 31 Mar, 2020 1 commit
-
-
Kate Lovett authored
-
- 11 Feb, 2020 1 commit
-
-
Christopher Fujino authored
-
- 10 Feb, 2020 1 commit
-
-
Dan Field authored
-
- 05 Feb, 2020 1 commit
-
- 04 Feb, 2020 1 commit
-
- 10 Jan, 2020 1 commit
-
-
Christopher Fujino authored
-
- 09 Jan, 2020 1 commit
-
-
Christopher Fujino authored
-
- 29 Oct, 2019 1 commit
-
-
Christopher Fujino authored
-
- 26 Oct, 2019 1 commit
-
-
Jonah Williams authored
This reverts commit 8e8d235d.
-
- 25 Oct, 2019 1 commit
-
-
Christopher Fujino authored
-
- 18 Jun, 2019 2 commits
- 07 Jun, 2019 1 commit
-
-
Jonah Williams authored
-
- 25 May, 2019 1 commit
-
-
Chris Bracken authored
Corects a bnuch of typeos throuhgout teh Fluter codebsae. Made use of the `misspell` tool: https://github.com/client9/misspell
-
- 10 Apr, 2019 1 commit
-
-
Greg Spencer authored
Bumps the Android build tools to 28.0.3 instead of 28.0.0 in the Dockerfile, since that is what flutter doctor wants.
-
- 05 Apr, 2019 2 commits
-
-
Tim Sneath authored
-
xster authored
-
- 15 Nov, 2018 1 commit
-
-
Greg Spencer authored
(re-land of #24244) This generates a zip file containing all of the docs, and uploads it when we publish docs, as well as a Dash/Zeal docset that contains a feed of the docs. Addresses at least part of #9955
-
- 14 Nov, 2018 1 commit
-
-
Greg Spencer authored
This reverts commit f3a4f7e8. Accidental merge on red.
-
- 13 Nov, 2018 1 commit
-
-
Greg Spencer authored
This generates a zip file containing all of the docs, and uploads it when we publish docs, as well as a Dash/Zeal docset that contains a feed of the docs. Addresses at least part of #9955
-
- 19 Oct, 2018 1 commit
-
-
Greg Spencer authored
-
- 02 Oct, 2018 1 commit
-
-
Greg Spencer authored
-
- 07 Aug, 2018 1 commit
-
-
Greg Spencer authored
This switches docs and gallery build and deployment to use Cirrus CI instead of Travis, reapplying the changes from #19925, but updating the Firebase tokens for upload, and refining docs.sh some to limit retries to five times (instead of indefinitely).
-
- 04 Aug, 2018 2 commits
-
-
Greg Spencer authored
This reverts commit a5c2dddd. Docs push requires different auth options... Will reland shortly.
-
Greg Spencer authored
This adds a Docker image for the linux builds, replacing a lot of the setup code with a Docker build. Added a docker image build step that has the right gcloud credentials in it. Also, this finally moves the gallery deployment and docs publishing steps to Cirrus. They were dependent upon some environment setup that was a lot easier to do in Docker than in a setup bash script.
-