remove signtool from windows as it's now in openpriv/nsis

This commit is contained in:
Dan Ballard 2021-06-30 14:35:25 -07:00
parent 5e9a193aec
commit 186ea9f2ba
2 changed files with 1 additions and 5 deletions

View File

@ -3,7 +3,7 @@
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-dev is just cirrusci/flutter:dev + apt installing the needed utils - linux-dev is just cirrusci/flutter:dev + apt installing the needed utils
- 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), and signtool in C:\MSIX-Toolkit\MSIX-Toolkit.x64 - 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.

View File

@ -24,10 +24,6 @@ RUN C:\TEMP\vs_buildtools.exe --quiet --wait --norestart --nocache \
--installPath C:\BuildTools \ --installPath C:\BuildTools \
|| IF "%ERRORLEVEL%"=="3010" EXIT 0 || IF "%ERRORLEVEL%"=="3010" EXIT 0
# Install signtool
ADD https://github.com/microsoft/MSIX-Toolkit/releases/download/1.4/MSIX-Toolkit.x64.zip C:/TEMP/MSIX-Toolkit.x64.zip
RUN powershell -command "Expand-Archive -Path C:\TEMP\MSIX-Toolkit.x64.zip -DestinationPath C:\MSIX-Toolkit"
# Install Google Root R1 cert so pub.dartlang.org stays working # Install Google Root R1 cert so pub.dartlang.org stays working
ADD https://pki.goog/repo/certs/gtsr1.pem C:/TEMP/gtsr1.pem ADD https://pki.goog/repo/certs/gtsr1.pem C:/TEMP/gtsr1.pem