From 94ba0b7f524fa7e5fe1821aebd100f8d6632392b Mon Sep 17 00:00:00 2001 From: Leo Fang Date: Sun, 12 Jan 2025 20:18:07 -0500 Subject: [PATCH] install cuda-python for doc build --- .github/workflows/build-docs.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/.github/workflows/build-docs.yml b/.github/workflows/build-docs.yml index f88e38bfb..90d1cd05a 100644 --- a/.github/workflows/build-docs.yml +++ b/.github/workflows/build-docs.yml @@ -70,6 +70,17 @@ jobs: echo "CUDA_BINDINGS_ARTIFACT_NAME=${CUDA_BINDINGS_ARTIFACT_BASENAME}-${{ github.sha }}" >> $GITHUB_ENV echo "CUDA_BINDINGS_ARTIFACTS_DIR=$(realpath "$REPO_DIR/cuda_bindings/dist")" >> $GITHUB_ENV + - name: Download cuda-python build artifacts + uses: actions/download-artifact@v4 + with: + name: cuda-python-wheel + path: . + + - name: Display structure of downloaded cuda-python artifacts + run: | + pwd + ls -lahR . + - name: Download cuda.bindings build artifacts uses: actions/download-artifact@v4 with: @@ -102,6 +113,8 @@ jobs: pip install *.whl popd + pip install cuda_python*.whl + - name: Build all (latest) docs id: build run: |