Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
N
ngraph
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
ngraph
Commits
6a4850e5
Commit
6a4850e5
authored
5 years ago
by
Robert Kimball
Committed by
Scott Cyphers
5 years ago
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
make sure regex read all the way to the end of line (#3531)
parent
0c0b5105
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
+3
-2
git_tags.cmake
cmake/Modules/git_tags.cmake
+3
-2
No files found.
cmake/Modules/git_tags.cmake
View file @
6a4850e5
...
...
@@ -43,10 +43,10 @@ function(NGRAPH_GET_TAG_OF_CURRENT_HASH)
if
(
NOT
${
TAG_LIST
}
STREQUAL
""
)
# first look for vX.Y.Z release tag
string
(
REGEX MATCH
"
${
NGRAPH_CURRENT_HASH
}
[
\t
]+refs/tags/v([0-9?]+)
\\
.([0-9?]+)
\\
.([0-9?]+)"
TAG
${
TAG_LIST
}
)
string
(
REGEX MATCH
"
${
NGRAPH_CURRENT_HASH
}
[
\t
]+refs/tags/v([0-9?]+)
\\
.([0-9?]+)
\\
.([0-9?]+)
$
"
TAG
${
TAG_LIST
}
)
if
(
"
${
TAG
}
"
STREQUAL
""
)
# release tag not found so now look for vX.Y.Z-rc.N tag
string
(
REGEX MATCH
"
${
NGRAPH_CURRENT_HASH
}
[
\t
]+refs/tags/v([0-9?]+)
\\
.([0-9?]+)
\\
.([0-9?]+)-(rc
\\
.[0-9?]+)"
TAG
${
TAG_LIST
}
)
string
(
REGEX MATCH
"
${
NGRAPH_CURRENT_HASH
}
[
\t
]+refs/tags/v([0-9?]+)
\\
.([0-9?]+)
\\
.([0-9?]+)-(rc
\\
.[0-9?]+)
$
"
TAG
${
TAG_LIST
}
)
endif
()
set
(
STATUS
${
TAG
}
)
if
(
NOT
"
${
TAG
}
"
STREQUAL
""
)
...
...
@@ -79,6 +79,7 @@ function(NGRAPH_GET_VERSION_LABEL)
if
(
"
${
NGRAPH_CURRENT_RELEASE_TAG
}
"
STREQUAL
""
)
NGRAPH_GET_CURRENT_HASH
()
NGRAPH_GET_MOST_RECENT_TAG
()
message
(
STATUS
"Current hash
${
NGRAPH_CURRENT_HASH
}
"
)
string
(
SUBSTRING
"
${
NGRAPH_CURRENT_HASH
}
"
0 7 HASH
)
if
(
NOT
${
NGRAPH_MOST_RECENT_RELEASE_TAG
}
STREQUAL
""
)
set
(
NGRAPH_VERSION_LABEL
"
${
NGRAPH_MOST_RECENT_RELEASE_TAG
}
+
${
HASH
}
"
PARENT_SCOPE
)
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment