mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
log string versions
This commit is contained in:
parent
ec092bd2a3
commit
ee7c9e986e
1 changed files with 12 additions and 0 deletions
12
tools/ci.py
12
tools/ci.py
|
@ -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():
|
||||
|
|
Loading…
Add table
Reference in a new issue