log string versions

This commit is contained in:
Daniel A. Wozniak 2024-11-21 16:39:23 -07:00 committed by Daniel Wozniak
parent ec092bd2a3
commit ee7c9e986e

View file

@ -1607,6 +1607,18 @@ def workflow_config(
minors_of_major = [version for version in releases if version.major == major]
testing_releases.append(minors_of_major[-1])
str_releases = [str(version) for version in testing_releases]
ctx.info(f"str_releases {str_releases}")
pkg_matrix = [
dict(
{
"tests-chunk": "install",
"version": None,
},
**_,
)
for _ in TEST_SALT_PKG_LISTING["linux"] # type: ignore
]
ctx.info("Jobs selected are")
for x, y in jobs.items():