forked from mindspore-lab/mindcv
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.sh
More file actions
37 lines (25 loc) · 709 Bytes
/
package.sh
File metadata and controls
37 lines (25 loc) · 709 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
#!/bin/bash
set -e
BASEPATH=$(cd "$(dirname $0)"; pwd)
OUTPUT_PATH="${BASEPATH}/output"
PYTHON=$(which python3)
mk_new_dir() {
local create_dir="$1" # the target to make
if [[ -d "${create_dir}" ]];then
rm -rf "${create_dir}"
fi
mkdir -pv "${create_dir}"
}
write_checksum() {
cd "$OUTPUT_PATH" || exit
PACKAGE_LIST=$(ls mindcv-*.whl) || exit
for PACKAGE_NAME in $PACKAGE_LIST; do
echo $PACKAGE_NAME
sha256sum -b "$PACKAGE_NAME" >"$PACKAGE_NAME.sha256"
done
}
mk_new_dir "${OUTPUT_PATH}"
${PYTHON} ${BASEPATH}/setup.py bdist_wheel
mv ${BASEPATH}/dist/*whl ${OUTPUT_PATH}
write_checksum
echo "------Successfully created mindcv package------"