diff --git a/cmake/autogenerated_versions.txt b/cmake/autogenerated_versions.txt index 5d502df6821d..88969d959166 100644 --- a/cmake/autogenerated_versions.txt +++ b/cmake/autogenerated_versions.txt @@ -2,11 +2,13 @@ # NOTE: has nothing common with DBMS_TCP_PROTOCOL_VERSION, # only DBMS_TCP_PROTOCOL_VERSION should be incremented on protocol changes. -SET(VERSION_REVISION 40) +SET(VERSION_REVISION 54460) SET(VERSION_MAJOR 22) SET(VERSION_MINOR 3) SET(VERSION_PATCH 8) SET(VERSION_GITHASH 420bdfa27510fe18e20f881d74ab66cddc44583d) -SET(VERSION_DESCRIBE v22.3.8.40-altinitystable) +SET(VERSION_TWEAK 40) +SET(VERSION_FLAVOUR altinitystable) +SET(VERSION_DESCRIBE v22.3.8.40.altinitystable) SET(VERSION_STRING 22.3.8.40.altinitystable) # end of autochange diff --git a/tests/ci/version_helper.py b/tests/ci/version_helper.py index f8e93c582ce9..a82fcd97ea76 100755 --- a/tests/ci/version_helper.py +++ b/tests/ci/version_helper.py @@ -214,7 +214,8 @@ def get_version_from_repo( versions["revision"], git, # Explicitly use tweak value from version file - tweak=versions["revision"] + tweak=versions.get("tweak", versions["revision"]), + flavour=versions["flavour"] )