upgrading to Flutter Stable 2.5.3

This commit is contained in:
Dan Ballard 2021-11-16 15:39:55 -08:00
parent 8c53fc1213
commit e031800b33
3 changed files with 6 additions and 4 deletions

View File

@ -2,15 +2,17 @@
These docker containers are built on containers from [cirrusci](https://hub.docker.com/u/cirrusci) ([cirruslabs](https://github.com/cirruslabs)). These docker containers are built on containers from [cirrusci](https://hub.docker.com/u/cirrusci) ([cirruslabs](https://github.com/cirruslabs)).
- linux-fdev2.5-rc is just cirrusci/flutter:2.5.0-6pre + apt installing the needed utils - linux-fstable-2.5.3 is cirrusci/flutter:2.5.3 + apt installing the needed utils
- linux-fdev2.5-rc is cirrusci/flutter:2.5.0-6pre + apt installing the needed utils
- linux-fdev2.2-rc is cirrusci/flutter:2.2 rc + apt installing the needed utils - linux-fdev2.2-rc is cirrusci/flutter:2.2 rc + apt installing the needed utils
- linux-dev is cirrusci/flutter:2.2 rc + apt installing the needed utils - linux-dev is cirrusci/flutter:2.2 rc + apt installing the needed utils
- windows-sdk30-fstable2.5.3 is cirrusci/android-sdk:30-windowsservercore-2019 with Visual Studio 16, Flutter dev (2.5.3), and Google Root cert gtsr1 (for future proofing pub get)
- windows-dev-sdk30-fdev2.5rc is cirrusci/android-sdk:30-windowsservercore-2019 with Visual Studio 16, Flutter dev (2.5rc), and Google Root cert gtsr1 (for future proofing pub get) - windows-dev-sdk30-fdev2.5rc is cirrusci/android-sdk:30-windowsservercore-2019 with Visual Studio 16, Flutter dev (2.5rc), and Google Root cert gtsr1 (for future proofing pub get)
- windows-dev-sdk30-fdev2.3rc is cirrusci/android-sdk:30-windowsservercore-2019 with Visual Studio 16, Flutter dev (2.3rc), and Google Root cert gtsr1 (for future proofing pub get) - windows-dev-sdk30-fdev2.3rc is cirrusci/android-sdk:30-windowsservercore-2019 with Visual Studio 16, Flutter dev (2.3rc), and Google Root cert gtsr1 (for future proofing pub get)
- windows-dev-sdk30-fdev2.2rc is cirrusci/android-sdk:30-windowsservercore-2019 with Visual Studio 16, and Flutter dev (2.2rc) - windows-dev-sdk30-fdev2.2rc is cirrusci/android-sdk:30-windowsservercore-2019 with Visual Studio 16, and Flutter dev (2.2rc)
These docker containers are both being used with Drone CI to build Flutter desktop apps for Linux and Windows. Simply run `flutter build` with the appropriate OS. These containers should work with any other Docker based automated build system such as Gitlab and others. These docker containers are both being used with Drone CI to build Flutter desktop apps for Linux and Windows. Simply run `flutter build` with the appropriate OS. These containers should work with any other Docker based automated build system such as Gitlab and others.
Example [.drone.yml](https://git.openprivacy.ca/flutter/flutter_app/src/branch/trunk/.drone.yml) Example [.drone.yml](https://git.openprivacy.ca/cwtch.im/cwtch-ui/src/branch/trunk/.drone.yml)
If you find these containers useful, please consider [donating to Open Privacy Research Society](https://openprivacy.ca/donate/) as it takes work to assemble and maintain our containers and we're a small org. :) If you find these containers useful, please consider [donating to Open Privacy Research Society](https://openprivacy.ca/donate/) as it takes work to assemble and maintain our containers and we're a small org. :)

View File

@ -1,4 +1,4 @@
FROM cirrusci/flutter:2.5.0-6.0.pre FROM cirrusci/flutter:2.5.3
RUN apt-get update RUN apt-get update
RUN apt-get install -y --no-install-recommends cmake ninja-build clang build-essential pkg-config libgtk-3-dev liblzma-dev lcov RUN apt-get install -y --no-install-recommends cmake ninja-build clang build-essential pkg-config libgtk-3-dev liblzma-dev lcov

View File

@ -34,7 +34,7 @@ RUN powershell.exe -Command \
RUN setx path "%path%;C:\flutter\bin;C:\flutter\bin\cache\dart-sdk\bin;" RUN setx path "%path%;C:\flutter\bin;C:\flutter\bin\cache\dart-sdk\bin;"
RUN git clone --branch dev https://github.com/flutter/flutter.git C:\flutter RUN git clone --branch stable https://github.com/flutter/flutter.git C:\flutter
RUN flutter config --no-analytics RUN flutter config --no-analytics