File tree Expand file tree Collapse file tree 3 files changed +9
-4
lines changed Expand file tree Collapse file tree 3 files changed +9
-4
lines changed Original file line number Diff line number Diff line change 52
52
sha : ${{ inputs.sha }}
53
53
date : ${{ inputs.date }}
54
54
script : ci/build_wheel.sh
55
+ package-type : python
56
+ wheel-name : ucx_py
55
57
wheel-publish :
56
58
needs : wheel-build
57
59
secrets : inherit
Original file line number Diff line number Diff line change 59
59
with :
60
60
build_type : pull-request
61
61
script : ci/build_wheel.sh
62
+ package-type : python
63
+ wheel-name : ucx_py
62
64
wheel-tests :
63
65
needs : wheel-build
64
66
secrets : inherit
Original file line number Diff line number Diff line change @@ -5,6 +5,8 @@ set -euo pipefail
5
5
6
6
source rapids-date-string
7
7
8
+ wheel_dir=${RAPIDS_WHEEL_BLD_OUTPUT_DIR}
9
+
8
10
rapids-generate-version > ./VERSION
9
11
10
12
RAPIDS_PY_CUDA_SUFFIX=" $( rapids-wheel-ctk-name-gen ${RAPIDS_CUDA_VERSION} ) "
@@ -17,16 +19,15 @@ rapids-pip-retry wheel \
17
19
--config-settings rapidsai.disable-cuda=false \
18
20
.
19
21
20
- mkdir -p final_dist
21
22
python -m auditwheel repair \
22
- -w final_dist \
23
+ -w " ${wheel_dir} " \
23
24
--exclude " libucm.so.0" \
24
25
--exclude " libucp.so.0" \
25
26
--exclude " libucs.so.0" \
26
27
--exclude " libucs_signal.so.0" \
27
28
--exclude " libuct.so.0" \
28
29
dist/*
29
30
30
- ./ci/validate_wheel.sh final_dist
31
+ ./ci/validate_wheel.sh " ${wheel_dir} "
31
32
32
- RAPIDS_PY_WHEEL_NAME=" ucx_py_${RAPIDS_PY_CUDA_SUFFIX} " rapids-upload-wheels-to-s3 python final_dist
33
+ RAPIDS_PY_WHEEL_NAME=" ucx_py_${RAPIDS_PY_CUDA_SUFFIX} " rapids-upload-wheels-to-s3 python " ${wheel_dir} "
You can’t perform that action at this time.
0 commit comments