Update build.yml

This commit is contained in:
Jay Lee
2021-06-17 14:29:38 -04:00
committed by GitHub
parent 83fbf0e8ac
commit b060664c9f

View File

@ -158,7 +158,8 @@ jobs:
echo "Downloading ${url}" echo "Downloading ${url}"
curl -o pyinstaller.tar.gz --compressed "${url}" curl -o pyinstaller.tar.gz --compressed "${url}"
tar xf pyinstaller.tar.gz tar xf pyinstaller.tar.gz
cd "pyinstaller-${PYINSTALLER_VERSION}/bootloader" cd "pyinstaller-${PYINSTALLER_VERSION}/"
if [ $GAMOS == "windows" ]; then
# remove pre-compiled bootloaders so we fail if bootloader compile fails # remove pre-compiled bootloaders so we fail if bootloader compile fails
rm -rf ../PyInstaller/bootloader/*bit rm -rf ../PyInstaller/bootloader/*bit
if [ "${PLATFORM}" == "x86" ]; then if [ "${PLATFORM}" == "x86" ]; then
@ -168,6 +169,7 @@ jobs:
fi fi
$python ./waf all $TARGETARCH $python ./waf all $TARGETARCH
cd .. cd ..
fi
$python setup.py install $python setup.py install
#$pip install pyinstaller #$pip install pyinstaller