Skip to content

Commit

Permalink
more fixes to CI scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
jameslamb committed Dec 17, 2024
1 parent 97f5d31 commit f492d59
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
6 changes: 6 additions & 0 deletions ci/build_wheel.sh
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,12 @@ case "${RAPIDS_CUDA_VERSION}" in
;;
esac

if [[ ${package_name} != "libraft" ]]; then
EXCLUDE_ARGS+=(
--exclude "libraft.so"
)
fi

sccache --zero-stats

rapids-logger "Building '${package_name}' wheel"
Expand Down
2 changes: 1 addition & 1 deletion ci/validate_wheel.sh
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ if [[ "${package_name}" == "libraft" ]]; then
--max-allowed-size-compressed '5.0G'
)
fi
elif [[ "${package_name}" == "pylibraft" ]]; then
elif [[ "${package_name}" == "pylibraft" ]] || [[ "${package_name}" == "raft-dask" ]]; then
if [[ "${RAPIDS_CUDA_MAJOR}" == "11" ]]; then
PYDISTCHECK_ARGS=(
--max-allowed-size-compressed '600M'
Expand Down

0 comments on commit f492d59

Please sign in to comment.