- 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
-
- 23 Jul, 2020 1 commit
-
-
Yazeed Al-Khalaf authored
*
Fix Spelling Issues in Main README.md * Fix spelling issues in dev README.md * Fix spelling issues in complex_layout README.md * Fix spelling issues in macrobenchmarks README.md * Fix spelling issues in platform_views_layout README.md * Fix spelling issues in test_Apps/stocks README.md * Fix spelling issues in bots README.md * Spell Check dev/ci README.md * Spell Check dev/ci/docker_linux README.md * Spell Check dev/devicelab README.md * Spell Check dev/docs README.md * Spell Check dev/snippets README.md * Spell Check dev/snippets/config/templates README.md * Spell Check dev/tools/gen_keycodes README.md * Spell Check dev/tools/vitool README.md * Spell Check examples/catalog README.md * Spell Check examples/flutter_view README.md * Spell Check examples/image_list README.md * Spell Check examples/layers README.md * Spell Check examples/platform_channel README.md * Spell Check examples/platform_channel_swift README.md * Spell Check examples/platform_view README.md * Spell Check packages/_flutter_web_build_script README.md * Spell Check packages/flutter_localizations README.md * Spell Check packages/flutter_tools README.md * Spell Check CODE_OF_CONDUCT.md * Spell Check dev/integration_test/android_splash_screens/splash_Screen_load_rotate README.md * Spell Check dev/integration_test/android_views README.md * Spell Check dev/integration_tests/flutter_driver_screenshot_test README.md * Spell Check dev/integration_tests/flutter_gallery README.md * Spell Check dev/integration_tests/gradle_deprecated_settings README.md * Spell Check dev/integration_tests/ios_add2app_life_cycle README.md * Spell Check dev/integration_tests/ios_host_app README.md * Spell Check dev/integration_tests/ios_platform_view_tests README.md * Spell Check dev/automated_tests/flutter_test README.md * Spell Check .github/PULL_REQUEST_TEMPLATE.md * Spell Check .hithub/ISSUE_TEMPLATE/ACTIVATION.md * Spell Check .github/ISSUE_TEMPLATE/BUG.md * Spell Check .github/ISSUE_TEMPLATE/feature_request.md * Spell Check .github/ISSUE_TEMPLATE/performance_others.md * Spell Check .github/ISSUE_TEMPLATE/performance_speed.md * Spell Check packages/flutter_tools/doc/daemon.md * Spell Check packages/flutter_tools/fuchsia_enrtypoint_shim/README.md * Minimize line to 80 columns * Minimize line to 80 columns * Fix Typo * Chnaged numbers to 1 for testing purposes * Changed numbers to 1 for testing purposes * Remove 'a' which is a typo * Change a sentence to be better * Remove 'a' which is a typo * Fix small issue * Fix small typo * Fix some typos * Remove trailing space * Remove trailing space * Fix small typo * Fix Typo * Fix small bug
-
- 20 Jul, 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
-
- 02 Jan, 2020 2 commits
-
-
Francisco Magdaleno authored
This reverts commit e768c92f.
- 31 Dec, 2019 1 commit
-
-
Ian Hickson authored
* Update packages. * Add many more global analyses. * Catch trailing spaces and trailing newlines in all text files. Before we were only checking newly added files, but that means we missed some. * Port the trailing spaces logic to work on Windows too. * Correct all the files with trailing spaces and newlines. * Refactor some of the dev/bots logic into a utils.dart library. Notably, the "exit" and "print" shims for testing are now usable from test.dart, analyze.dart, and run_command.dart. * Add an "exitWithError" function that prints the red lines and then exits. This is the preferred way to exit from test.dart, analyze.dart, and run_command.dart. * More consistency in the output of analyze.dart. * Refactor analyze.dart to use the _allFiles file enumerating logic more widely. * Add some double-checking logic to the _allFiles logic to catch cases where changes to that logic end up catching fewer files than expected (helps prevent future false positives). * Add a check to prevent new binary files from being added to the repository. Grandfather in the binaries that we've already added. * Update all the dependencies (needed because we now import crypto in dev/bots/analyze.dart).
-
- 09 Dec, 2019 1 commit
-
-
Todd Volkert authored
In https://github.com/flutter/flutter/pull/46035, we fixed the docker tag to be a legal tag during build. This PR makes the corresponding change to the tag during upload. Without this, we build the right tag, but then we try to upload the wrong tag.
-
- 04 Dec, 2019 1 commit
-
-
Todd Volkert authored
-
- 27 Nov, 2019 1 commit
-
-
Ian Hickson authored
* Update project.pbxproj files to say Flutter rather than Chromium Also, the templates now have an empty organization so that we don't cause people to give their apps a Flutter copyright. * Update the copyright notice checker to require a standard notice on all files * Update copyrights on Dart files. (This was a mechanical commit.) * Fix weird license headers on Dart files that deviate from our conventions; relicense Shrine. Some were already marked "The Flutter Authors", not clear why. Their dates have been normalized. Some were missing the blank line after the license. Some were randomly different in trivial ways for no apparent reason (e.g. missing the trailing period). * Clean up the copyrights in non-Dart files. (Manual edits.) Also, make sure templates don't have copyrights. * Fix some more ORGANIZATIONNAMEs
-
- 29 Oct, 2019 1 commit
-
-
Christopher Fujino authored
-