-
Notifications
You must be signed in to change notification settings - Fork 17
/
build-linux-wheel.sh
33 lines (25 loc) · 1.14 KB
/
build-linux-wheel.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
cd /cysimdjson
rm -rf build cysimdjson.egg-info
/opt/python/cp36-cp36m/bin/pip3 install Cython wheel
/opt/python/cp36-cp36m/bin/python3 setup.py bdist_wheel
rm -rf build cysimdjson.egg-info
/opt/python/cp37-cp37m/bin/pip3 install Cython wheel
/opt/python/cp37-cp37m/bin/python3 setup.py bdist_wheel
rm -rf build cysimdjson.egg-info
/opt/python/cp38-cp38/bin/pip3 install Cython wheel
/opt/python/cp38-cp38/bin/python3 setup.py bdist_wheel
rm -rf build cysimdjson.egg-info
/opt/python/cp39-cp39/bin/pip3 install Cython wheel
/opt/python/cp39-cp39/bin/python3 setup.py bdist_wheel
rm -rf build cysimdjson.egg-info
/opt/python/cp310-cp310/bin/pip3 install Cython wheel
/opt/python/cp310-cp310/bin/python3 setup.py bdist_wheel
rm -rf build cysimdjson.egg-info
/opt/python/cp311-cp311/bin/pip3 install Cython wheel
/opt/python/cp311-cp311/bin/python3 setup.py bdist_wheel
rm -rf build cysimdjson.egg-info
/opt/python/cp312-cp312/bin/pip3 install Cython wheel
/opt/python/cp312-cp312/bin/python3 setup.py bdist_wheel
cd /cysimdjson/dist
find . -name "cysimdjson-*-linux_x86_64.whl" | xargs -n 1 auditwheel repair -w /cysimdjson/dist
rm cysimdjson-*-linux_x86_64.whl