@@ -38,26 +38,18 @@ function os::build::version::git_vars() {
38
38
fi
39
39
fi
40
40
# 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} "
42
44
# Try to match the "git describe" output to a regex to try to extract
43
45
# the "major" and "minor" versions and whether this is the exact tagged
44
46
# version or whether the tree is between two tagged versions.
45
47
if [[ " ${OS_GIT_VERSION} " =~ ^v([0-9]+)\. ([0-9]+)\. ([0-9]+)(\. [0-9]+)* ([-].* )? $ ]]; then
46
48
OS_GIT_MAJOR=${BASH_REMATCH[1]}
47
49
OS_GIT_MINOR=${BASH_REMATCH[2]}
48
50
OS_GIT_PATCH=${BASH_REMATCH[3]}
49
- if [[ -n " ${BASH_REMATCH[5]} " ]]; then
50
- OS_GIT_MINOR+=" +"
51
- fi
52
51
fi
53
52
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$/ } "
61
53
if [[ " ${OS_GIT_TREE_STATE} " == " dirty" ]]; then
62
54
# git describe --dirty only considers changes to existing files, but
63
55
# that is problematic since new untracked .go files affect the build,
0 commit comments