You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gpustack/hack/build.sh

49 lines
1.2 KiB

#!/usr/bin/env bash
set -o errexit
set -o nounset
set -o pipefail
ROOT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd -P)"
source "${ROOT_DIR}/hack/lib/init.sh"
function build() {
poetry build
}
function prepare_dependencies() {
POETRY_ONLY=true bash "${ROOT_DIR}/hack/install.sh"
}
function set_version() {
local version_file="${ROOT_DIR}/gpustack/__init__.py"
local git_commit="${GIT_COMMIT:-HEAD}"
local git_commit_short="${git_commit:0:7}"
gpustack::log::info "setting version to $GIT_VERSION"
gpustack::log::info "setting git commit to $git_commit_short"
# Replace the __version__ variable in the __init__.py file
gpustack::util::sed "s/__version__ = .*/__version__ = '${GIT_VERSION}'/" "${version_file}"
gpustack::util::sed "s/__git_commit__ = .*/__git_commit__ = '${git_commit_short}'/" "${version_file}"
# Update the poetry version
poetry version "${GIT_VERSION}"
}
function restore_version_file() {
local version_file="${ROOT_DIR}/gpustack/__init__.py"
git checkout -- "${version_file}"
}
#
# main
#
gpustack::log::info "+++ BUILD +++"
prepare_dependencies
set_version
build
restore_version_file
gpustack::log::info "--- BUILD ---"