allow PRs to succeed, Win SSL 1.1.1b

This commit is contained in:
Jay Lee
2019-05-17 15:18:41 -04:00
parent c04164e47a
commit 33c85e9ed6
3 changed files with 70 additions and 60 deletions

View File

@@ -1,6 +1,11 @@
until powershell Install-WindowsFeature Net-Framework-Core; do echo "trying again..."; done
cinst -y --forcex86 python3
cinst -y --forcex86 openssl.light
#cinst -y --forcex86 openssl.light
cd ~/pybuild
if [ ! -e Win32OpenSSL_Light-1_1_1b.exe ]; then
wget --quiet https://slproweb.com/download/Win32OpenSSL_Light-1_1_1b.exe
fi
./Win32OpenSSL_Light-1_1_1b.exe /silent /sp- /suppressmsgboxes /DIR=$ProgramFiles\OpenSSL -f
cp -v /c/Program\ Files/OpenSSL/*.dll /c/Python37/DLLs
export PATH=$PATH:/c/Python37/scripts
until cinst -y wixtoolset; do echo "trying again..."; done

View File

@@ -1,6 +1,10 @@
until powershell Install-WindowsFeature Net-Framework-Core; do echo "trying again..."; done
cinst -y python3
cinst -y openssl.light
cd ~/pybuild
if [ ! -e Win64OpenSSL_Light-1_1_1b.exe ]; then
wget --quiet https://slproweb.com/download/Win64OpenSSL_Light-1_1_1b.exe
fi
./Win64OpenSSL_Light-1_1_1b.exe /silent /sp- /suppressmsgboxes /DIR=$ProgramFiles\OpenSSL -f
cp -v /c/Program\ Files/OpenSSL/bin/*.dll /c/Python37/DLLs
export PATH=$PATH:/c/Python37/scripts
until cinst -y wixtoolset; do echo "trying again..."; done