Skip to content

wheels

wheels #1

Workflow file for this run

name: wheels
on: [push, pull_request]
jobs:
wheels:
runs-on: ubuntu-latest
strategy:
matrix:
image: ["manylinux_2_28_x86_64"]
python_version: [ {cp: cp39-cp39, py: 39}, {cp: cp310-cp310, py: 3.10}, {cp: cp311-cp311, py: 3.11}, {cp: cp312-cp312, py: 3.12} ]
steps:
- uses: actions/checkout@v4
- name: Building wheel
run: docker run -e PYPATH=/opt/python/${{ matrix.python_version.cp }} -e PYTHON_VERSION=${{ matrix.python_version.py }} --rm -v `pwd`:/project quay.io/pypa/${{ matrix.image }} /project/scripts/build-manylinux-wheel.sh