Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/build-test-package-python-cuda.yml
Original file line number Diff line number Diff line change
Expand Up @@ -280,9 +280,9 @@ jobs:

# Find wheel for Python 3.11 dynamically
if [[ "${{ matrix.runs-on }}" == "self-hosted-linux" ]]; then
wheel=$(find wheels -name "*cuda${{ matrix.cuda-version }}**manylinux_2_28_x86_64.whl" -type f | head -1)
wheel=$(find wheels -name "itk_rtk_cuda${{ matrix.cuda-version }}*cp311-abi3-manylinux_2_28_x86_64.whl" -type f | head -1)
else
wheel=$(find wheels -name "*cuda${{ matrix.cuda-version }}*cp311*win*.whl" -type f | head -1)
wheel=$(find wheels -name "itk_rtk_cuda${{ matrix.cuda-version }}*cp311-abi3-win_amd64.whl" -type f | head -1)
fi

echo "Installing wheel: $wheel"
Expand Down
Loading