support build_id on Python package building (#281)

* support buildid in package building

* undo the change on build.sh

* build.sh issue on macos
This commit is contained in:
Wenbing Li 2022-08-24 14:39:33 -07:00 коммит произвёл GitHub
Родитель 134f882e64
Коммит f7151e3ae0
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
2 изменённых файлов: 14 добавлений и 7 удалений

Просмотреть файл

@ -4,13 +4,16 @@
set -e -x -u
OSNAME=$(uname -s)
if [ -z ${CPU_NUMBER+x} ]; then
if [[ "$OSNAME" == "Darwin" ]]; then
alias nproc="sysctl -n hw.logicalcpu"
CPU_NUMBER=$(sysctl -n hw.logicalcpu)
else
CPU_NUMBER=$(nproc)
fi
fi
BUILD_FLAVOR=RelWithDebInfo
target_dir=out/$OSNAME/$BUILD_FLAVOR
mkdir -p "$target_dir" && cd "$target_dir"
if [ -z ${CPU_NUMBER+x} ]; then CPU_NUMBER=$(nproc); fi
# it looks the parallel build on CI pipeline machine causes crashes.
cmake "$@" ../../.. && cmake --build . --config $BUILD_FLAVOR --parallel "${CPU_NUMBER}"

Просмотреть файл

@ -126,6 +126,10 @@ def read_version():
version_str = line[0].split('=')[1].strip('" \n\r')
# is it a dev build or release?
build_id = os.getenv('BUILD_BUILDID', None)
if build_id is not None:
version_str += '.{}'.format(build_id)
else:
if os.path.isdir(os.path.join(TOP_DIR, '.git')):
rel_br, cid = read_git_refs()
if not rel_br: