File tree Expand file tree Collapse file tree 1 file changed +9
-2
lines changed
Expand file tree Collapse file tree 1 file changed +9
-2
lines changed Original file line number Diff line number Diff line change 9898 cp quippy/setup.py build/${QUIP_ARCH}
9999 ./bin/gitversion --hash-only > build/${QUIP_ARCH}/VERSION
100100 echo "CIBW_ENVIRONMENT=$CIBW_ENVIRONMENT"
101- python -m cibuildwheel --output-dir wheelhouse --archs $ARCHS build/${QUIP_ARCH}
101+ if [ "$RUNNER_OS" == "macOS" ]; then
102+ python -m cibuildwheel --output-dir wheelhouse --archs $ARCHS build/${QUIP_ARCH}
103+ else
104+ for CIBW_MANYLINUX_X86_64_IMAGE in manylinux2010 manylinux2014; do
105+ export CIBW_MANYLINUX_X86_64_IMAGE
106+ python -m cibuildwheel --output-dir wheelhouse --archs $ARCHS build/${QUIP_ARCH}
107+ done
108+ fi
102109 done
103110 env :
104111 CIBW_SKIP : cp27-* cp35-* cp36-* cp311-* pp* *musllinux*
@@ -139,4 +146,4 @@ jobs:
139146 twine upload wheelhouse/*.whl
140147 env :
141148 TWINE_USERNAME : ${{ secrets.PYPI_USERNAME }}
142- TWINE_PASSWORD : ${{ secrets.PYPI_PASSWORD }}
149+ TWINE_PASSWORD : ${{ secrets.PYPI_PASSWORD }}
You can’t perform that action at this time.
0 commit comments