Skip to content

Commit 2babad1

Browse files
committedMar 24, 2025
added wheel build location
1 parent 7d9f945 commit 2babad1

File tree

3 files changed

+7
-1
lines changed

3 files changed

+7
-1
lines changed
 

‎.github/workflows/build.yaml

+3
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,9 @@ jobs:
5353
sha: ${{ inputs.sha }}
5454
matrix_filter: group_by(.ARCH) | map(max_by([(.PY_VER|split(".")|map(tonumber)), (.CUDA_VER|split(".")|map(tonumber))]))
5555
script: ci/build_wheel.sh
56+
wheel-name: rapids_logger
57+
package-type: cpp
58+
append-cuda-suffix: false
5659
wheel-publish-cpp:
5760
needs: wheel-cpp-build
5861
secrets: inherit

‎.github/workflows/pr.yaml

+3
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,9 @@ jobs:
3939
build_type: pull-request
4040
matrix_filter: group_by(.ARCH) | map(max_by([(.PY_VER|split(".")|map(tonumber)), (.CUDA_VER|split(".")|map(tonumber))]))
4141
script: ci/build_wheel.sh
42+
wheel-name: rapids_logger
43+
package-type: cpp
44+
append-cuda-suffix: false
4245
static-build:
4346
needs: style
4447
secrets: inherit

‎ci/build_wheel.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ set -euo pipefail
66
package_name="rapids_logger"
77
package_dir="python/rapids-logger"
88
dist_dir="${package_dir}/dist"
9-
final_dir="${package_dir}/final_dist"
9+
final_dir="${RAPIDS_WHEEL_BLD_OUTPUT_DIR}"
1010

1111
source rapids-configure-sccache
1212

0 commit comments

Comments
 (0)
Please sign in to comment.