update linux multi build script
This commit is contained in:
parent
9933633e4f
commit
e59885c98a
1 changed files with 9 additions and 4 deletions
|
@ -1,11 +1,16 @@
|
||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
|
if ! command -v pyenv &> /dev/null
|
||||||
|
then
|
||||||
|
echo "Pyenv required: https://github.com/pyenv/pyenv-installer"
|
||||||
|
exit
|
||||||
|
fi
|
||||||
rm *linux-gnu.so
|
rm *linux-gnu.so
|
||||||
pyenv install -s 3.9.0
|
pyenv install -s 3.9.1
|
||||||
pyenv global 3.9.0
|
pyenv global 3.9.1
|
||||||
pip3 install cffi
|
pip3 install cffi
|
||||||
python build_linux.py
|
python build_linux.py
|
||||||
pyenv install -s 3.8.6
|
pyenv install -s 3.8.7
|
||||||
pyenv global 3.8.6
|
pyenv global 3.8.7
|
||||||
pip3 install cffi
|
pip3 install cffi
|
||||||
python build_linux.py
|
python build_linux.py
|
||||||
pyenv install -s 3.7.9
|
pyenv install -s 3.7.9
|
||||||
|
|
Reference in a new issue