Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
asapo
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Terraform modules
Analyze
Contributor analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Joao Alvim Oliveira Dias De Almeida
asapo
Commits
f780fb81
Commit
f780fb81
authored
4 years ago
by
Sergey Yakubov
Browse files
Options
Downloads
Patches
Plain Diff
use latest tag for all except master
parent
d393d65a
Branches
doc_update
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
CMakeModules/prepare_version_tag.cmake
+5
-10
5 additions, 10 deletions
CMakeModules/prepare_version_tag.cmake
docs/doxygen/CMakeLists.txt
+3
-3
3 additions, 3 deletions
docs/doxygen/CMakeLists.txt
with
8 additions
and
13 deletions
CMakeModules/prepare_version_tag.cmake
+
5
−
10
View file @
f780fb81
execute_process
(
COMMAND git describe --tags --
dirty
execute_process
(
COMMAND git describe --tags --
abbrev=0
OUTPUT_VARIABLE VERSION
WORKING_DIRECTORY
${
PROJECT_SOURCE_DIR
}
)
string
(
STRIP
${
VERSION
}
VERSION
)
...
...
@@ -8,17 +8,12 @@ execute_process(COMMAND git rev-parse --abbrev-ref HEAD
WORKING_DIRECTORY
${
PROJECT_SOURCE_DIR
}
)
string
(
STRIP
${
BRANCH
}
BRANCH
)
if
(
${
BRANCH
}
STREQUAL
"
develop
"
)
if
(
${
BRANCH
}
STREQUAL
"
master
"
)
SET
(
ASAPO_VERSION
${
BRANCH
}
.
${
VERSION
}
)
else
()
SET
(
ASAPO_VERSION
${
BRANCH
}
.latest
)
endif
()
execute_process
(
COMMAND git describe --tags --abbrev=0
OUTPUT_VARIABLE ASAPO_VERSION_TAG
WORKING_DIRECTORY
${
PROJECT_SOURCE_DIR
}
)
string
(
STRIP
${
ASAPO_VERSION_TAG
}
ASAPO_VERSION_TAG
)
execute_process
(
COMMAND git rev-parse --short HEAD
OUTPUT_VARIABLE VERSION_COMMIT
WORKING_DIRECTORY
${
PROJECT_SOURCE_DIR
}
)
...
...
@@ -39,10 +34,10 @@ endif()
if
(
${
BRANCH
}
STREQUAL
"
develop
"
)
SET
(
ASAPO_VERSION_PYTHON
${
ASAPO_VERSION
_TAG
}
.
${
BRANCH
}
.
${
VERSION_COMMIT
}
)
if
(
${
BRANCH
}
STREQUAL
"
master
"
)
SET
(
ASAPO_VERSION_PYTHON
${
ASAPO_VERSION
}
)
else
()
SET
(
ASAPO_VERSION_PYTHON
${
ASAPO_VERSION
_TAG
}
.
${
BRANCH
}
.latest
)
SET
(
ASAPO_VERSION_PYTHON
${
ASAPO_VERSION
}
.
${
BRANCH
}
.latest
)
endif
()
...
...
This diff is collapsed.
Click to expand it.
docs/doxygen/CMakeLists.txt
+
3
−
3
View file @
f780fb81
...
...
@@ -6,19 +6,19 @@ if(DOXYGEN_EXECUTABLE)
add_custom_target
(
docs-cpp-producer
COMMAND
PROJECT_NUMBER=
${
ASAPO_VERSION
_TAG
}
-
${
ASAPO_VERSION
}
${
DOXYGEN_EXECUTABLE
}
doxygen.ini VERBATIM
PROJECT_NUMBER=
${
ASAPO_VERSION
}
${
DOXYGEN_EXECUTABLE
}
doxygen.ini VERBATIM
WORKING_DIRECTORY producer
)
add_custom_target
(
docs-cpp-consumer
COMMAND
PROJECT_NUMBER=
${
ASAPO_VERSION
_TAG
}
-
${
ASAPO_VERSION
}
${
DOXYGEN_EXECUTABLE
}
doxygen.ini VERBATIM
PROJECT_NUMBER=
${
ASAPO_VERSION
}
${
DOXYGEN_EXECUTABLE
}
doxygen.ini VERBATIM
WORKING_DIRECTORY consumer
)
add_custom_target
(
docs-cpp ALL
COMMAND
PROJECT_NUMBER=
${
ASAPO_VERSION
_TAG
}
-
${
ASAPO_VERSION
}
${
DOXYGEN_EXECUTABLE
}
doxygen.ini VERBATIM
PROJECT_NUMBER=
${
ASAPO_VERSION
}
${
DOXYGEN_EXECUTABLE
}
doxygen.ini VERBATIM
)
add_dependencies
(
docs-cpp docs-cpp-producer docs-cpp-consumer
)
else
()
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment