Skip to content

Commit f6434e9

Browse files
soltyshopenshift-cherrypick-robot
authored and
openshift-cherrypick-robot
committed
UPSTREAM: <carry>: squash with the rest of tooling
1 parent 5e38c72 commit f6434e9

File tree

1 file changed

+3
-11
lines changed

1 file changed

+3
-11
lines changed

openshift-hack/lib/build/version.sh

+3-11
Original file line numberDiff line numberDiff line change
@@ -38,26 +38,18 @@ function os::build::version::git_vars() {
3838
fi
3939
fi
4040
# Use git describe to find the version based on annotated tags.
41-
if [[ -n ${OS_GIT_VERSION-} ]] || OS_GIT_VERSION=$("${git[@]}" describe --long --tags --abbrev=7 --match 'v[0-9]*' "${OS_GIT_COMMIT}^{commit}" 2>/dev/null); then
41+
if [[ -n ${OS_GIT_VERSION-} ]] || OS_GIT_VERSION=$(sed -rn 's/.*io.openshift.build.versions="kubernetes=(1.[0-9]+.[0-9]+)"/v\1/p' openshift-hack/images/hyperkube/Dockerfile.rhel); then
42+
# combine GIT_COMMIT with GIT_VERSION which is being read from the above Dockerfile
43+
OS_GIT_VERSION+="+${OS_GIT_COMMIT:0:7}"
4244
# Try to match the "git describe" output to a regex to try to extract
4345
# the "major" and "minor" versions and whether this is the exact tagged
4446
# version or whether the tree is between two tagged versions.
4547
if [[ "${OS_GIT_VERSION}" =~ ^v([0-9]+)\.([0-9]+)\.([0-9]+)(\.[0-9]+)*([-].*)?$ ]]; then
4648
OS_GIT_MAJOR=${BASH_REMATCH[1]}
4749
OS_GIT_MINOR=${BASH_REMATCH[2]}
4850
OS_GIT_PATCH=${BASH_REMATCH[3]}
49-
if [[ -n "${BASH_REMATCH[5]}" ]]; then
50-
OS_GIT_MINOR+="+"
51-
fi
5251
fi
5352

54-
# This translates the "git describe" to an actual semver.org
55-
# compatible semantic version that looks something like this:
56-
# v1.1.0-alpha.0.6+84c76d1-345
57-
# shellcheck disable=SC2001
58-
OS_GIT_VERSION=$(echo "${OS_GIT_VERSION}" | sed "s/-\([0-9]\{1,\}\)-g\([0-9a-f]\{7,40\}\)$/\+\2-\1/")
59-
# If this is an exact tag, remove the last segment.
60-
OS_GIT_VERSION="${OS_GIT_VERSION//-0$/}"
6153
if [[ "${OS_GIT_TREE_STATE}" == "dirty" ]]; then
6254
# git describe --dirty only considers changes to existing files, but
6355
# that is problematic since new untracked .go files affect the build,

0 commit comments

Comments
 (0)