Skip to content

Commit b366c23

Browse files
removed wheel_dir variable from ci scripts
1 parent d2eeef8 commit b366c23

File tree

1 file changed

+3
-7
lines changed

1 file changed

+3
-7
lines changed

ci/build_wheel.sh

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,6 @@ set -euo pipefail
77
# Set the package name
88
package_name="jupyterlab-nvdashboard"
99

10-
wheel_dir="${RAPIDS_WHEEL_BLD_OUTPUT_DIR}"
11-
1210
# Configure sccache and set the date string
1311
source rapids-configure-sccache
1412
source rapids-date-string
@@ -37,13 +35,11 @@ rapids-logger "Begin py build"
3735
# Install build tools for Python
3836
python -m pip install build
3937

40-
mkdir -p "${wheel_dir}"
41-
4238
# Build the Python package
43-
python -m build -s -w --outdir "${wheel_dir}"
39+
python -m build -s -w --outdir "${RAPIDS_WHEEL_BLD_OUTPUT_DIR}"
4440

45-
ci/validate_wheel.sh "${wheel_dir}"
41+
ci/validate_wheel.sh "${RAPIDS_WHEEL_BLD_OUTPUT_DIR}"
4642

4743
rapids-logger "Uploading JupyterLab NVDashboard wheels to S3"
4844
# Upload Python wheels to S3
49-
RAPIDS_PY_WHEEL_NAME="${package_name}" RAPIDS_PY_WHEEL_PURE="1" rapids-upload-wheels-to-s3 python "${wheel_dir}"
45+
RAPIDS_PY_WHEEL_NAME="${package_name}" RAPIDS_PY_WHEEL_PURE="1" rapids-upload-wheels-to-s3 python "${RAPIDS_WHEEL_BLD_OUTPUT_DIR}"

0 commit comments

Comments
 (0)