Skip to content

Commit

Permalink
debugging why PIP_FIND_LINKS doesn't seem to work
Browse files Browse the repository at this point in the history
  • Loading branch information
msarahan committed Apr 11, 2024
1 parent 455eaad commit a903a16
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ci/build_wheel.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/bash
# Copyright (c) 2023-2024, NVIDIA CORPORATION.

set -euo pipefail
set -euox pipefail

package_name=$1
package_dir=$2
Expand Down
4 changes: 3 additions & 1 deletion ci/build_wheel_cudf.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/bash
# Copyright (c) 2023-2024, NVIDIA CORPORATION.

set -euo pipefail
set -euox pipefail

package_dir="python/cudf"

Expand All @@ -18,6 +18,8 @@ RAPIDS_PY_CUDA_SUFFIX="$(rapids-wheel-ctk-name-gen ${RAPIDS_CUDA_VERSION})"
# Downloads libcudf wheel from this current build, then points pip to it in PIP_FIND_LINKS below
RAPIDS_PY_WHEEL_NAME="libcudf_${RAPIDS_PY_CUDA_SUFFIX}" rapids-download-wheels-from-s3 cpp /tmp/libcudf_dist

ls -la /tmp/libcudf_dist

export PIP_FIND_LINKS="/tmp/libcudf_dist"
./ci/build_wheel.sh cudf ${package_dir}

Expand Down

0 comments on commit a903a16

Please sign in to comment.