mroe travis

This commit is contained in:
Jay Lee
2019-09-27 12:34:43 -04:00
parent a8c1051e0f
commit b57c62fe1b
4 changed files with 8 additions and 7 deletions

View File

@@ -75,10 +75,9 @@ else
./configure $safe_flags > /dev/null
make -j$cpucount -s
echo "Sticking with safe Python for now..."
else
echo "Installing optimized Python..."
make install > /dev/null
fi
echo "Installing Python..."
make install > /dev/null
cd ~
export LD_LIBRARY_PATH=~/ssl/lib:~/python/lib

View File

@@ -14,14 +14,16 @@ sudo installer -pkg python-$BUILD_PYTHON_VERSION-macosx10.9.pkg -target /
export python=python3
export pip=pip3
echo "PYthon location:"
echo "Python location:"
which $python
brew install openssl@1.1 > /dev/null
brew info openssl@1.1
echo "OpenSSL Lib"
ls -al /usr/local/opt/openssl@1.1/lib
echo "Local Python Lib"
ls -al /usr/local/lib/python3.7
ls -al /usr/local/opt
ls -al /usr/local/opt/python
ls -al /usr/local/opt/python/lib
# Compile latest OpenSSL
#if [ ! -d openssl-$BUILD_OPENSSL_VERSION ]; then

View File

@@ -16,7 +16,7 @@ ls -alRF /c/ssl
sha1sum /c/ssl/*.dll
echo "Python dlls..."
ls -al /c/Python37/DLLs
sha1sum /c/Python37/DLLs
sha1sum /c/Python37/DLLs/*.dll
until cp -v /c/ssl/*.dll /c/Python37/DLLs; do echo "trying again..."; done
export PATH=$PATH:/c/Python37/scripts
cd $mypath

View File

@@ -1,5 +1,5 @@
cd src
sha1sum /c/Python37/DLLs
sha1sum /c/Python37/DLLs/*.dll
pyinstaller --clean --noupx -F --distpath=gam $GAMOS-gam.spec
export gam="gam/gam"
export gampath=$(readlink -e gam)