Skip to content

Commit e2e3861

Browse files
committed
Tweaks to rmm build script
1 parent c0f9240 commit e2e3861

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ if (( NUMARGS == 0 )) || hasArg rmm; then
128128
cd "${REPODIR}/python"
129129
if [[ ${INSTALL_TARGET} != "" ]]; then
130130
echo "building rmm..."
131-
python setup.py build_ext --inplace
131+
python setup.py build_ext --inplace --library-dir="${LIBRMM_BUILD_DIR}"
132132
echo "installing rmm..."
133133
python setup.py install --single-version-externally-managed --record=record.txt
134134
else

ci/gpu/build.sh

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -104,11 +104,11 @@ else
104104
cd $WORKSPACE/python
105105
logger "Installing librmm..."
106106
conda install -c $WORKSPACE/ci/artifacts/rmm/cpu/conda-bld/ librmm
107-
107+
export LIBRMM_BUILD_DIR="$WORKSPACE/ci/artifacts/rmm/cpu/conda_work/build"
108108
logger "Building rmm"
109-
python setup.py build_ext --inplace --library-dir="$WORKSPACE/ci/artifacts/rmm/cpu/conda_work/build"
110-
python setup.py install --single-version-externally-managed --record=record.txt
111-
# "$WORKSPACE/build.sh" -v clean rmm
109+
# python setup.py build_ext --inplace --library-dir=
110+
# python setup.py install --single-version-externally-managed --record=record.txt
111+
"$WORKSPACE/build.sh" -v rmm
112112
logger "pytest rmm"
113113
py.test --cache-clear --junitxml=${WORKSPACE}/test-results/junit-rmm.xml -v --cov-config=.coveragerc --cov=rmm --cov-report=xml:${WORKSPACE}/python/rmm-coverage.xml --cov-report term
114114
exitcode=$?

0 commit comments

Comments
 (0)