Skip to content

Commit 2f672af

Browse files
committed
remove mullinux
1 parent 21713a7 commit 2f672af

1 file changed

Lines changed: 5 additions & 2 deletions

File tree

.github/workflows/linux-cuda.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff 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:"

0 commit comments

Comments
 (0)