Skip to content

Commit f25aec8

Browse files
committed
Try a different --find-links directory
1 parent 243d139 commit f25aec8

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

.github/workflows/test-wheel-linux.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -269,11 +269,14 @@ jobs:
269269
- name: Ensure cuda-python installable
270270
run: |
271271
echo Showing wheels locally in $PWD
272-
ls *.whl
272+
ls dist/*.whl
273+
# We need to find the `cuda_bindings` dependency from a local
274+
# directory, rather than on PyPI, since the version hasn't been
275+
# released yet.
273276
if [[ "${{ matrix.LOCAL_CTK }}" == 1 ]]; then
274-
pip install cuda_python*.whl --find-links .
277+
pip install cuda_python*.whl --find-links ${{ env.CUDA_BINDINGS_ARTIFACTS_DIR }}
275278
else
276-
pip install $(ls cuda_python*.whl)[all] --find-links .
279+
pip install $(ls cuda_python*.whl)[all] --find-links ${{ env.CUDA_BINDINGS_ARTIFACTS_DIR }}
277280
fi
278281
279282
- name: Install cuda.pathfinder extra wheels for testing

0 commit comments

Comments
 (0)