Skip to content

Commit

Permalink
remove management of UCX system libraries in build scripts (#1053)
Browse files Browse the repository at this point in the history
For rapidsai/build-planning#57, #1041 switched `ucx-py` over to `libucx` wheels. To test that that was working, it added some code to building scripts to remove system installations of UCX libraries.

That should no longer be necessary as of rapidsai/ci-imgs#154.

This proposes removing that code for managing system dependencies of UCX libraries, to simplify those build scripts a bit.

Authors:
  - James Lamb (https://github.com/jameslamb)

Approvers:
  - Kyle Edwards (https://github.com/KyleFromNVIDIA)
  - Peter Andreas Entschev (https://github.com/pentschev)

URL: #1053
  • Loading branch information
jameslamb authored Jul 1, 2024
1 parent 7b70211 commit 23169ca
Showing 1 changed file with 0 additions and 13 deletions.
13 changes: 0 additions & 13 deletions ci/build_wheel.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,19 +6,6 @@ set -euo pipefail
package_name="ucx-py"
underscore_package_name=$(echo "${package_name}" | tr "-" "_")

# Clear out system ucx files to ensure that we're getting ucx from the wheel.
rm -rf /usr/lib64/ucx
rm -rf /usr/lib64/libucm.*
rm -rf /usr/lib64/libucp.*
rm -rf /usr/lib64/libucs.*
rm -rf /usr/lib64/libucs_signal.*
rm -rf /usr/lib64/libuct.*

rm -rf /usr/include/ucm
rm -rf /usr/include/ucp
rm -rf /usr/include/ucs
rm -rf /usr/include/uct

source rapids-configure-sccache
source rapids-date-string

Expand Down

0 comments on commit 23169ca

Please sign in to comment.