Skip to content

Commit

Permalink
fix windows build zipping
Browse files Browse the repository at this point in the history
Signed-off-by: Stavros Avramidis <[email protected]>
  • Loading branch information
purpl3F0x committed May 14, 2020
1 parent 0559fa4 commit 44a214a
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,17 @@ after_success:
zip -r tidal-rpc-osx.zip tidal-rpc.app;
fi
- if [[ $TRAVIS_OS_NAME == "windows" ]]; then
- windeployqt tidal-rpc.exe
- powershell -Command "ls ; Get-ChildItem -Path *.exe , *.dll , ../*/imageformats* , ../*/platforms , ../*/styles , ./LICENSE | Compress-Archive -DestinationPath tidal-rpc-win.zip -Force"
- windeployqt tidal-rpc.exe;
- mkdir Release;
- copy *.exe Release;
- copy *.dll Release;
- echo D | xcopy /s imageformats "Release/imageformats";
- echo D | xcopy /s platforms "Release/platforms";
- echo D | xcopy /s styles "Release/styles";
- copy LICENSE Release;
- cd Release;
- 7z a -tzip "tidal-rpc-win.zip";
- copy tidal-rpc-win.zip ..
fi

deploy:
Expand Down

0 comments on commit 44a214a

Please sign in to comment.