1. 15 Aug, 2023 1 commit
  2. 02 Aug, 2023 1 commit
    • dependabot[bot]'s avatar
      Bump ubuntu from `f8f6584` to `c9820a4` in /dev/ci/docker_linux (#130292) · 6cf50ef9
      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>
      6cf50ef9
  3. 23 Jun, 2023 1 commit
    • dependabot[bot]'s avatar
      Bump ubuntu from `b795f8e` to `db8bf6f` in /dev/ci/docker_linux (#128740) · fcb54add
      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>
      fcb54add
  4. 06 Jun, 2023 1 commit
  5. 24 Feb, 2023 1 commit
  6. 22 Feb, 2023 1 commit
    • Ricardo Amador's avatar
      Update jdk in cirrus dockerfile image. (#121251) · 1168c2c8
      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
      1168c2c8
  7. 19 Sep, 2022 1 commit
  8. 29 Aug, 2022 1 commit
  9. 26 Aug, 2022 1 commit
  10. 27 Jun, 2022 1 commit
  11. 30 May, 2022 1 commit
  12. 25 Apr, 2022 1 commit
  13. 06 Apr, 2022 1 commit
  14. 21 Mar, 2022 1 commit
  15. 08 Mar, 2022 1 commit
  16. 04 Feb, 2022 1 commit
  17. 01 Feb, 2022 1 commit
    • godofredoc's avatar
      Pin dependencies in docker file. (#97466) · 29fd0469
      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.
      29fd0469
  18. 28 Sep, 2021 1 commit
    • Greg Spencer's avatar
      Add smoke tests for all the examples, fix 17 broken examples. (#89021) · ab2b0851
      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.
      ab2b0851
  19. 08 Sep, 2021 1 commit
    • Greg Spencer's avatar
      Switch to Debian bullseye, update nodejs to npm package, add flutter desktop... · 9cea6917
      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.
      9cea6917
  20. 15 May, 2021 1 commit
  21. 19 Mar, 2021 1 commit
  22. 08 Oct, 2020 1 commit
  23. 06 Oct, 2020 1 commit
  24. 20 Aug, 2020 1 commit
  25. 08 Aug, 2020 1 commit
  26. 31 Mar, 2020 1 commit
  27. 11 Feb, 2020 1 commit
  28. 10 Feb, 2020 1 commit
  29. 05 Feb, 2020 1 commit
  30. 04 Feb, 2020 1 commit
  31. 10 Jan, 2020 1 commit
  32. 09 Jan, 2020 1 commit
  33. 29 Oct, 2019 1 commit
  34. 26 Oct, 2019 1 commit
  35. 25 Oct, 2019 1 commit
  36. 18 Jun, 2019 2 commits
  37. 07 Jun, 2019 1 commit
  38. 25 May, 2019 1 commit
  39. 10 Apr, 2019 1 commit