Skip to content

Commit

Permalink
Treat rapids-dask-dependency CI artifacts as pure wheels (#30)
Browse files Browse the repository at this point in the history
## Description
This marks `rapids-dask-dependency` as a pure wheel, meaning that the CI
artifacts are not specific to a Python version or CPU architecture. This
change depends on rapidsai/gha-tools#96, and
makes CI workflows more robust by allowing the test matrix to be
separated from the build matrix.
  • Loading branch information
bdice authored Mar 7, 2024
1 parent cb272d5 commit 3d6efa0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ci/build_wheel.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@ sed -i "s/^version = .*/version = \"${version}\"/g" "${package_dir}/pyproject.to
cd "${package_dir}"
python -m pip wheel . -w dist -vvv --no-deps --disable-pip-version-check

RAPIDS_PY_WHEEL_NAME="${package_name}" rapids-upload-wheels-to-s3 dist
RAPIDS_PY_WHEEL_NAME="${package_name}" RAPIDS_PY_WHEEL_PURE="1" rapids-upload-wheels-to-s3 dist

0 comments on commit 3d6efa0

Please sign in to comment.