File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -35,12 +35,15 @@ jobs:
3535 - name : Build wheels
3636 uses : pypa/cibuildwheel@v3.1.0
3737 env :
38- CIBW_BUILD : " cp311-*linux*"
38+ # Only build manylinux wheels (skip musllinux since CUDA is only in manylinux images)
39+ CIBW_BUILD : " cp311-*manylinux*"
40+ # Skip musllinux builds (they don't have CUDA)
41+ CIBW_SKIP : " cp311-*musllinux*"
3942 # Use CUDA-enabled manylinux image from https://github.com/ameli/manylinux-cuda
4043 # Available images: sameli/manylinux_2_34_x86_64_cuda_12.9, sameli/manylinux_2_28_x86_64_cuda_12.6, etc.
4144 CIBW_MANYLINUX_X86_64_IMAGE : " sameli/manylinux_2_34_x86_64_cuda_12.9"
4245 CIBW_BEFORE_BUILD : |
43- # Verify CUDA is available (should be pre-installed in the image)
46+ # Verify CUDA is available (should be pre-installed in the manylinux image)
4447 echo "Verifying CUDA installation..."
4548 if command -v nvcc &> /dev/null; then
4649 echo "CUDA compiler version:"
You can’t perform that action at this time.
0 commit comments