- 15 Aug, 2023 1 commit
-
-
godofredoc authored
This manual roll is needed to update the jdk apt package. Bug: https://github.com/flutter/flutter/issues/132531
-
- 02 Aug, 2023 1 commit
-
-
dependabot[bot] authored
Bumps ubuntu from `f8f6584` to `c9820a4`. [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=ubuntu&package-manager=docker&previous-version=focal&new-version=focal)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) </details>
-
- 23 Jun, 2023 1 commit
-
-
dependabot[bot] authored
Bumps ubuntu from `b795f8e` to `db8bf6f`. [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=ubuntu&package-manager=docker&previous-version=focal&new-version=focal)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) </details>
-
- 06 Jun, 2023 1 commit
-
-
- 24 Feb, 2023 1 commit
-
-
Ricardo Amador authored
Add a note about updating and fix env variable
-
- 22 Feb, 2023 1 commit
-
-
Ricardo Amador authored
* Update jdk in cirrus dockerfile image. * Update to install jaxb for jdk11. Hopefully this works. * Add jaxb to classpath * Classpath was not set in run * Update to use newer tools * typo * Update path to commandline tools. * Trying different approach * Wrong path * Wrong path * Wrong path * Wrong path * Remove debug statements
-
- 19 Sep, 2022 1 commit
-
-
dependabot[bot] authored
-
- 29 Aug, 2022 1 commit
-
-
yusuf-goog authored
* Updating cirrus docker to use Ubuntui image. Bug:https://github.com/flutter/flutter/issues/110295 * Update Dockerfile
-
- 26 Aug, 2022 1 commit
-
-
dependabot[bot] authored
-
- 27 Jun, 2022 1 commit
-
-
dependabot[bot] authored
-
- 30 May, 2022 1 commit
-
-
dependabot[bot] authored
-
- 25 Apr, 2022 1 commit
-
-
dependabot[bot] authored
-
- 06 Apr, 2022 1 commit
-
-
dependabot[bot] authored
-
- 21 Mar, 2022 1 commit
-
-
dependabot[bot] authored
-
- 08 Mar, 2022 1 commit
-
-
dependabot[bot] authored
-
- 04 Feb, 2022 1 commit
-
-
godofredoc authored
-
- 01 Feb, 2022 1 commit
-
-
godofredoc authored
* Pin dependencies in docker file. The docker file had two dependencies that were not locked. An npm dependency and the debian base image. This PR pins those two dependencies. * Use the slim version of debian image. * Use image with bigger disk to build docker images. * remove web_engine_tests from cirrus.
-
- 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.
-