File tree Expand file tree Collapse file tree 1 file changed +10
-0
lines changed Expand file tree Collapse file tree 1 file changed +10
-0
lines changed Original file line number Diff line number Diff line change @@ -29,16 +29,26 @@ ${PYTHON} -m build -w -n -x
29
29
pushd dist
30
30
${PYTHON} -m wheel unpack -d dpctl_wheel dpctl* .whl
31
31
export lib_name=libDPCTLSyclInterface
32
+ echo ${lib_name}
32
33
export so_full_path=$( find dpctl_wheel -regextype posix-extended -regex ' ^.*${lib_name}\.so' )
34
+ echo " So full path: ${so_full_path} "
33
35
export sox_full_path=$( find dpctl_wheel -regextype posix-extended -regex ' ^.*${lib_name}\.so\.[0-9]*$' )
36
+ echo " Sox full path: ${sox_full_path} "
34
37
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} "
35
39
rm -rf ${so_name} ${soxxx_name}
40
+ echo " Removed two files"
36
41
export so_name=$( basename ${so_full_path} )
42
+ echo " so_name: ${so_name} "
37
43
export sox_name=$( basename ${sox_full_path} )
44
+ echo " sox_name: ${sox_name} "
38
45
export soxxx_name=$( basename ${soxxx_full_path} )
46
+ echo " soxx_name: ${soxx_name} "
39
47
export wheel_path=$( dirname $( dirname ${so_full_path} ) )
48
+ echo " wheel_path: ${wheel_path} "
40
49
# deal with hard copies
41
50
${PYTHON} -m wheel pack ${wheel_path}
51
+ echo " Packed!"
42
52
rm -rf dpctl_wheel
43
53
popd ..
44
54
${PYTHON} -m wheel tags --remove --build " $GIT_DESCRIBE_NUMBER " \
You can’t perform that action at this time.
0 commit comments