Not all systems impl. PEPs for packaging/pathlib #2
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: Build PyQrack Wheels | |
on: | |
push: | |
branches: | |
- main # Trigger on pushes to the main branch (adjust if needed) | |
workflow_dispatch: # Allow manual triggering of the workflow | |
jobs: | |
build_wheels: | |
runs-on: ubuntu-latest # Use a Linux runner | |
env: | |
PYQRACK_SHARED_LIB_PATH: "/home/runner/work/pyqrack/pyqrack/qrack/build/libqrack_pinvoke.so" | |
strategy: | |
matrix: | |
platform: | |
- manylinux_2_39_x86_64 | |
- manylinux_2_35_x86_64 | |
- linux_aarch64 | |
- linux_armv7l | |
- manylinux2014_x86_64 | |
- macosx_10_4_universal2 | |
steps: | |
- name: Checkout PyQrack | |
uses: actions/checkout@v4 | |
- name: Checkout Qrack | |
uses: actions/checkout@v4 | |
with: | |
repository: 'unitaryfund/qrack' | |
path: qrack | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.12' | |
- name: Install Dependencies | |
run: | | |
python -m pip install --upgrade pip | |
python -m pip install wheel setuptools | |
- name: Prepare Build Environment (Linux) | |
if: runner.os == 'Linux' | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y build-essential cmake ocl-icd-opencl-dev opencl-headers | |
- name: Install Homebrew (MacOS) | |
if: runner.os == 'macOS' | |
uses: Homebrew/actions/setup-homebrew@master | |
- name: Prepare Build Environment (MacOS) | |
if: runner.os == 'macOS' | |
run: | | |
brew install cmake opencl-clhpp-headers | |
- name: Build Qrack Linux x86-64 | |
if: matrix.platform == 'manylinux_2_39_x86_64' || matrix.platform == 'manylinux_2_35_x86_64' || matrix.platform == 'manylinux2014_x86_64' | |
run: | | |
cd qrack | |
mkdir build | |
cd build | |
cmake -DENABLE_RDRAND=OFF -DENABLE_DEVRAND=ON -DQBCAPPOW=12 -DCPP_STD=14 -DUINTPOW=5 .. | |
make all | |
- name: Build Qrack Linux ARM64 | |
if: matrix.platform == 'linux_aarch64' || matrix.platform == 'linux_armv7l' | |
run: | | |
cd qrack | |
mkdir build | |
cd build | |
cmake -DENABLE_RDRAND=OFF -DENABLE_DEVRAND=ON -DENABLE_COMPLEX_X2=OFF -DQBCAPPOW=12 -DUINTPOW=5 -DCPP_STD=14 .. | |
make all | |
- name: Build Qrack MacOS | |
if: matrix.platform == 'macosx_10_4_universal2' | |
run: | | |
cd qrack | |
mkdir build | |
cd build | |
cmake -DQBCAPPOW=12 -DUINTPOW=5 -DCPP_STD=14 .. | |
make all | |
- name: Build Wheel | |
run: | | |
mkdir pyqrack/qrack_system/qrack_lib | |
cp $PYQRACK_SHARED_LIB_PATH pyqrack/qrack_system/qrack_lib/ | |
python setup.py bdist_wheel --plat-name=${{ matrix.platform }} | |
- name: Upload Artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: pyqrack-${{ matrix.platform }} | |
path: dist/ |