Fix name typo

This commit is contained in:
lazymio
2021-10-06 11:07:55 +02:00
parent 76a1b4661c
commit 3cbad9556a

View File

@ -76,11 +76,11 @@ jobs:
if [ ${{ matrix.config.name }} == 'win32' ]; then if [ ${{ matrix.config.name }} == 'win32' ]; then
cd bindings/python && python setup.py build -p win32 sdist bdist_wheel -p win32 cd bindings/python && python setup.py build -p win32 sdist bdist_wheel -p win32
rm dist/*.tar.gz rm dist/*.tar.gz
elif [ ${{ matrix.config.name }} == 'manylinux1_i686' ]; then elif [ ${{ matrix.config.name }} == 'manylinux2014_i686' ]; then
docker run --rm -v `pwd`/:/work dockcross/manylinux2014-x86 > ./dockcross docker run --rm -v `pwd`/:/work dockcross/manylinux2014-x86 > ./dockcross
chmod +x ./dockcross chmod +x ./dockcross
./dockcross bindings/python/build_wheel.sh ./dockcross bindings/python/build_wheel.sh
elif [ ${{ matrix.config.name }} == 'manylinux1_x86_64' ]; then elif [ ${{ matrix.config.name }} == 'manylinux2014_x86_64' ]; then
docker run --rm -v `pwd`/:/work dockcross/manylinux2014-x64 > ./dockcross docker run --rm -v `pwd`/:/work dockcross/manylinux2014-x64 > ./dockcross
chmod +x ./dockcross chmod +x ./dockcross
./dockcross bindings/python/build_wheel.sh ./dockcross bindings/python/build_wheel.sh