drone windows final

This commit is contained in:
Dan Ballard 2021-05-12 15:52:20 -07:00
parent 38cced389a
commit 3667a5ee6e
1 changed files with 4 additions and 10 deletions

View File

@ -205,27 +205,21 @@ steps:
image: openpriv/flutter-desktop:windows-dev
commands:
- flutter pub get
- # TEMP comment out build to test completion
- #flutter build windows
- flutter build windows
# flwtch-`cat VERSION`-`cat BUILDDATE`
- $Env:buildname = 'flwtch-win-'
- $Env:buildname += type .\VERSION
- $Env:buildname += '-'
- $Env:buildname += type .\BUILDDATE
- $Env:builddir = 'deploy\flwtch-win-'
- $Env:builddir += $Env:buildname
- $Env:zip = $Env:buildname
- $Env:zip += '.zip'
- echo $Env:builddir
- echo $Env:zip
- mkdir deploy
#- move build\\windows\\runner\\Release $Env:builddir
- mkdir $Env:builddir
- move build\\windows\\runner\\Release $Env:builddir
- powershell -command "Expand-Archive -Path tor.zip -DestinationPath $Env:builddir\Tor"
- powershell -command "Compress-Archive -Path $Env:builddir -DestinationPath $Env:zip"
- dir
- dir deploy
- move $Env:zip $Env:builddir
- powershell -command "(Get-FileHash tor.zip -Algorithm sha512).Hash > deploy\$Env:zip.sha512"
- move $Env:zip deploy
- dir deploy
- name: deploy-windows
image: openpriv/flutter-desktop:windows-sdk30-fdev2.2rc