free disk space #135
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: BuildManylinux20102014 | |
# Build on every branch push, tag push, and pull request change: | |
on: [push, pull_request] | |
jobs: | |
build_wheels: | |
name: Build manylinux2010-2014 wheels | |
runs-on: ubuntu-20.04 | |
strategy: | |
matrix: | |
manylinux_image: [manylinux2010, manylinux2014] | |
python_version: ['2.7', '3.6', '3.7', '3.8', '3.9', '3.10'] | |
exclude: | |
- manylinux_image: manylinux2010 | |
python_version: '3.9' | |
- manylinux_image: manylinux2010 | |
python_version: '3.10' | |
container: micheleantonazzi/manylinux-extended:${{ matrix.manylinux_image }}_x86_64_extended_0.7.1 | |
steps: | |
- uses: actions/checkout@v1 | |
with: | |
submodules: recursive | |
- name: Configure system | |
run: | | |
cd .. | |
/bin/bash GibsonEnv/build_scripts/${{ matrix.manylinux_image }}/configure_linux.sh | |
- name: Build sdist | |
run: | | |
export CC=/usr/lib64/openmpi/bin/mpicc | |
pip${{ matrix.python_version }} install wheel | |
pip${{ matrix.python_version }} install -r build_scripts/${{ matrix.manylinux_image }}/requirements.txt | |
python${{ matrix.python_version }} setup.py sdist | |
- name: Build bdists | |
run: | | |
export CC=/usr/lib64/openmpi/bin/mpicc | |
pip${{ matrix.python_version }} install -e . | |
python${{ matrix.python_version }} setup.py bdist_wheel | |
auditwheel repair dist/gibson-*-cp* | |
- name: Upload to pypi | |
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags') | |
env: | |
TWINE_USERNAME: __token__ | |
TWINE_PASSWORD: ${{ secrets.PYPI_TOKEN }} | |
run: | | |
pip${{ matrix.python_version }} install twine | |
python${{ matrix.python_version }} -m twine upload dist/gibson*.tar.gz --skip-existing | |
python${{ matrix.python_version }} -m twine upload wheelhouse/* --skip-existing |