mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 05:00:20 +00:00
62477d8c65
- for now all versions start with v6.0 - CICD builds use the monolithic build number as patch level, e.g. v6.0.12345 - local builds use the following algorithm - find the newest commit with a CICD build number that is included in the working tree - count the number of commits in the working tree since that commit - if there are no commits since the last CICD build, the local build version will be v6.0.12345-local - if there are N commits since the last CICD build, it will be v6.0.12345-N-local - test builds in the CICD that don't create artifacts simply use a dummy release in order to not incorrectly increment the build number and also not to waste time and resources by manually checking out the nightly-build repo for each of these builds. Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
24 lines
800 B
CMake
24 lines
800 B
CMake
message(STATUS "processing version.cmake")
|
|
execute_process(
|
|
COMMAND bash ${CMAKE_TOP_SRC_DIR}/../scripts/get-version
|
|
WORKING_DIRECTORY ${CMAKE_TOP_SRC_DIR}
|
|
OUTPUT_VARIABLE CANONICAL_VERSION_STRING
|
|
OUTPUT_STRIP_TRAILING_WHITESPACE
|
|
)
|
|
|
|
execute_process(
|
|
COMMAND bash ${CMAKE_TOP_SRC_DIR}/../scripts/get-version 4
|
|
WORKING_DIRECTORY ${CMAKE_TOP_SRC_DIR}
|
|
OUTPUT_VARIABLE CANONICAL_VERSION_STRING_4
|
|
OUTPUT_STRIP_TRAILING_WHITESPACE
|
|
)
|
|
|
|
configure_file(${SRC} ${DST} @ONLY)
|
|
if(CMAKE_SYSTEM_NAME STREQUAL "Windows")
|
|
execute_process(
|
|
COMMAND cat ${CMAKE_TOP_SRC_DIR}/../packaging/windows/smtk-import.nsi.in
|
|
COMMAND sed -e "s/VERSIONTOKEN/${CANONICAL_VERSION_STRING}/"
|
|
COMMAND sed -e "s/PRODVTOKEN/${CANONICAL_VERSION_STRING_4}/"
|
|
OUTPUT_FILE ${CMAKE_BINARY_DIR}/staging/smtk-import.nsi
|
|
)
|
|
endif()
|