mirror of
https://github.com/mimblewimble/grin-wallet.git
synced 2025-01-21 03:21:08 +03:00
windows build tweaks
This commit is contained in:
parent
36ae74e695
commit
05b9dab2cd
1 changed files with 3 additions and 3 deletions
|
@ -6,7 +6,7 @@ export CHANGELOG_GITHUB_TOKEN="$token"
|
||||||
|
|
||||||
tagname=`git describe --tags --exact-match 2>/dev/null || git symbolic-ref -q --short HEAD`
|
tagname=`git describe --tags --exact-match 2>/dev/null || git symbolic-ref -q --short HEAD`
|
||||||
|
|
||||||
echo 'make a tarball for the release binary...\n'
|
echo 'package the release binary...\n'
|
||||||
|
|
||||||
if [[ $TRAVIS_OS_NAME == 'osx' ]]; then
|
if [[ $TRAVIS_OS_NAME == 'osx' ]]; then
|
||||||
|
|
||||||
|
@ -23,12 +23,12 @@ if [[ $TRAVIS_OS_NAME == 'osx' ]]; then
|
||||||
elif [[ $TRAVIS_OS_NAME == 'windows' ]]; then
|
elif [[ $TRAVIS_OS_NAME == 'windows' ]]; then
|
||||||
|
|
||||||
# Custom requirements on windows
|
# Custom requirements on windows
|
||||||
cd target/release ; rm -f *.zip; zip "grin-wallet-$tagname-$TRAVIS_JOB_ID-win-x64.zip" grin
|
cd target/release ; rm -f *.zip; zip "grin-wallet-$tagname-$TRAVIS_JOB_ID-win-x64.zip" grin-wallet.exe
|
||||||
/bin/ls -ls *.zip | awk '{print $6,$7,$8,$9,$10}'
|
/bin/ls -ls *.zip | awk '{print $6,$7,$8,$9,$10}'
|
||||||
md5sum "grin-wallet-$tagname-$TRAVIS_JOB_ID-win-x64.zip" > "grin-wallet-$tagname-$TRAVIS_JOB_ID-win-x64.zip"-md5sum.txt
|
md5sum "grin-wallet-$tagname-$TRAVIS_JOB_ID-win-x64.zip" > "grin-wallet-$tagname-$TRAVIS_JOB_ID-win-x64.zip"-md5sum.txt
|
||||||
/bin/ls -ls *-md5sum.txt | awk '{print $6,$7,$8,$9,$10}'
|
/bin/ls -ls *-md5sum.txt | awk '{print $6,$7,$8,$9,$10}'
|
||||||
cd - > /dev/null;
|
cd - > /dev/null;
|
||||||
echo "win x64 tarball generated\n"
|
echo "win x64 zip file generated\n"
|
||||||
|
|
||||||
# Only generate changelog on Linux platform, to avoid duplication
|
# Only generate changelog on Linux platform, to avoid duplication
|
||||||
exit 0
|
exit 0
|
||||||
|
|
Loading…
Reference in a new issue