Dry run built 32bit exe in buildscripts/winbuild.sh

This commit is contained in:
Dmitri Bogomolov 2021-06-07 18:00:00 +03:00
parent 132b413f6e
commit 8cdc934efd
Signed by untrusted user: g1itch
GPG Key ID: 720A756F18DEED13

View File

@ -167,6 +167,14 @@ function build_exe(){
wine pyinstaller bitmessagemain.spec wine pyinstaller bitmessagemain.spec
} }
function dryrun_exe(){
cd "${BASE_DIR}" || exit 1
if [ ! "${MACHINE_TYPE}" == 'x86_64' ]; then
local VERSION=$(python setup.py --version)
wine packages/pyinstaller/dist/Bitmessage_x86_$VERSION.exe -t
fi
}
# prepare on ubuntu # prepare on ubuntu
# dpkg --add-architecture i386 # dpkg --add-architecture i386
# apt update # apt update
@ -187,3 +195,4 @@ install_msgpack
install_pyinstaller install_pyinstaller
build_dll build_dll
build_exe build_exe
dryrun_exe