Skip to content

Commit 8c02360

Browse files
Added debugging echos
1 parent fd4ad37 commit 8c02360

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

conda-recipe/build.sh

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,16 +29,26 @@ ${PYTHON} -m build -w -n -x
2929
pushd dist
3030
${PYTHON} -m wheel unpack -d dpctl_wheel dpctl*.whl
3131
export lib_name=libDPCTLSyclInterface
32+
echo ${lib_name}
3233
export so_full_path=$(find dpctl_wheel -regextype posix-extended -regex '^.*${lib_name}\.so')
34+
echo "So full path: ${so_full_path}"
3335
export sox_full_path=$(find dpctl_wheel -regextype posix-extended -regex '^.*${lib_name}\.so\.[0-9]*$')
36+
echo "Sox full path: ${sox_full_path}"
3437
export soxxx_full_path=$(find dpctl_wheel -regextype posix-extended -regex '^.*${lib_name}\.so\.[0-9]*\.[0-9]*$')
38+
echo "Soxxx full path: ${soxxx_full_path}"
3539
rm -rf ${so_name} ${soxxx_name}
40+
echo "Removed two files"
3641
export so_name=$(basename ${so_full_path})
42+
echo "so_name: ${so_name}"
3743
export sox_name=$(basename ${sox_full_path})
44+
echo "sox_name: ${sox_name}"
3845
export soxxx_name=$(basename ${soxxx_full_path})
46+
echo "soxx_name: ${soxx_name}"
3947
export wheel_path=$(dirname $(dirname ${so_full_path}))
48+
echo "wheel_path: ${wheel_path}"
4049
# deal with hard copies
4150
${PYTHON} -m wheel pack ${wheel_path}
51+
echo "Packed!"
4252
rm -rf dpctl_wheel
4353
popd ..
4454
${PYTHON} -m wheel tags --remove --build "$GIT_DESCRIBE_NUMBER" \

0 commit comments

Comments
 (0)