Skip to content

Commit

Permalink
get better logs
Browse files Browse the repository at this point in the history
  • Loading branch information
jameslamb committed Jun 10, 2024
1 parent 6c9fb3f commit 15fde53
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ci/build_python.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/bash
# Copyright (c) 2023, NVIDIA CORPORATION.

set -euo pipefail
set -euo pipefail -x

rapids-configure-conda-channels

Expand Down
10 changes: 9 additions & 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, NVIDIA CORPORATION.

set -euo pipefail
set -euo pipefail -x

package_name="ucx-py"
underscore_package_name=$(echo "${package_name}" | tr "-" "_")
Expand All @@ -26,6 +26,12 @@ rapids-generate-version > ./VERSION

RAPIDS_PY_CUDA_SUFFIX="$(rapids-wheel-ctk-name-gen ${RAPIDS_CUDA_VERSION})"

cat /etc/xdg/pip/pip.conf <<EOF
[global]
quiet = 0
verbose = 1
EOF

# TODO: remove before merging (when new rapids-build-backend is released)
git clone \
-b setuptools \
Expand All @@ -41,6 +47,8 @@ export PIP_FIND_LINKS="file:///tmp/delete-me/rapids-build-backend/dist"

python -m pip wheel . -w dist--no-deps --disable-pip-version-check

unset PIP_FIND_LINKS

mkdir -p final_dist
python -m auditwheel repair \
-w final_dist \
Expand Down

0 comments on commit 15fde53

Please sign in to comment.