Skip to content

Commit

Permalink
Update manylinux to build more wheels
Browse files Browse the repository at this point in the history
  • Loading branch information
clorton committed Jan 26, 2024
1 parent 3cd8f7f commit 71dbcb2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 108 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/docker/shared.env
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
PYTHON_VERSIONS=(
cp311-cp311
cp310-cp310
cp39-cp39
cp38-cp38
cp37-cp37m
Expand Down
108 changes: 0 additions & 108 deletions .github/workflows/wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -142,114 +142,6 @@ jobs:
name: linux-wheels
path: python/dist/wheelhouse

manylinux9:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
with:
submodules: true

- name: Set up Python 3.9
uses: actions/setup-python@v2
with:
python-version: 3.9

- name: Build sdist
shell: bash
run: |
cd python
python setup.py sdist
- name: Upload sdist
uses: actions/upload-artifact@v2
with:
name: sdist3.9
path: python/dist

- name: Build wheels in docker
shell: bash
run: |
docker run --rm -v `pwd`:/project -w /project quay.io/pypa/manylinux2010_x86_64 bash .github/workflows/docker/buildwheel.sh
- name: Upload Wheels
uses: actions/upload-artifact@v2
with:
name: linux-wheels3.9
path: python/dist/wheelhouse

manylinux10:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
with:
submodules: true

- name: Set up Python 3.10
uses: actions/setup-python@v2
with:
python-version: "3.10"

- name: Build sdist
shell: bash
run: |
cd python
python setup.py sdist
- name: Upload sdist
uses: actions/upload-artifact@v2
with:
name: sdist3.10
path: python/dist

- name: Build wheels in docker
shell: bash
run: |
docker run --rm -v `pwd`:/project -w /project quay.io/pypa/manylinux2010_x86_64 bash .github/workflows/docker/buildwheel.sh
- name: Upload Wheels
uses: actions/upload-artifact@v2
with:
name: linux-wheels3.10
path: python/dist/wheelhouse

manylinux11:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
with:
submodules: true

- name: Set up Python 3.11
uses: actions/setup-python@v2
with:
python-version: 3.11

- name: Build sdist
shell: bash
run: |
cd python
python setup.py sdist
- name: Upload sdist
uses: actions/upload-artifact@v2
with:
name: sdist3.11
path: python/dist

- name: Build wheels in docker
shell: bash
run: |
docker run --rm -v `pwd`:/project -w /project quay.io/pypa/manylinux2010_x86_64 bash .github/workflows/docker/buildwheel.sh
- name: Upload Wheels
uses: actions/upload-artifact@v2
with:
name: linux-wheels3.11
path: python/dist/wheelhouse

OSX-test:
needs: ['OSX']
runs-on: macos-latest
Expand Down

0 comments on commit 71dbcb2

Please sign in to comment.