Skip to content

Commit

Permalink
Use rc aware version during installation of checkmk for testing purpose
Browse files Browse the repository at this point in the history
Caused by CMK-19234 at 3d56180

Change-Id: Ia8ffba6ce4eaa5bf7ed689971ad61777f410e1cc
(cherry picked from commit eeeec87)
  • Loading branch information
JonasScharpf committed Nov 6, 2024
1 parent 5ed11b6 commit a04c99f
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions tests/scripts/install-cmk.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,9 @@ def main():
fallback_branch=current_base_branch_name,
)
logger.info(
"Version: %s, Edition: %s, Branch: %s",
"Version: %s (%s), Edition: %s, Branch: %s",
version.version,
version.version_rc_aware,
version.edition.long,
version.branch,
)
Expand All @@ -40,7 +41,7 @@ def main():
return 0

manager = ABCPackageManager.factory()
manager.install(version.version, version.edition)
manager.install(version.version_rc_aware, version.edition)

if not version.is_installed():
logger.error("Failed not install version")
Expand Down

0 comments on commit a04c99f

Please sign in to comment.