mirror of
https://github.com/saltstack/salt.git
synced 2025-04-16 09:40:20 +00:00
Fix package test matrix for amazon-linux-2023
Signed-off-by: Pedro Algarvio <palgarvio@vmware.com>
This commit is contained in:
parent
d94312b546
commit
bb4d8e25ed
1 changed files with 10 additions and 0 deletions
10
tools/ci.py
10
tools/ci.py
|
@ -747,6 +747,9 @@ def pkg_matrix(
|
|||
"photonos-4-arm64",
|
||||
"photonos-5",
|
||||
"photonos-5-arm64",
|
||||
"amazonlinux-2-arm64",
|
||||
"amazonlinux-2023",
|
||||
"amazonlinux-2023-arm64",
|
||||
]
|
||||
and pkg_type != "MSI"
|
||||
):
|
||||
|
@ -824,6 +827,13 @@ def pkg_matrix(
|
|||
):
|
||||
# We never build packages for these OSs in 3006
|
||||
continue
|
||||
if (
|
||||
version
|
||||
and distro_slug.startswith("amazonlinux-2023")
|
||||
and version < tools.utils.Version("3006.6")
|
||||
):
|
||||
# We never build packages for AmazonLinux 2023 prior to 3006.5
|
||||
continue
|
||||
_matrix.append(
|
||||
{
|
||||
"test-chunk": session,
|
||||
|
|
Loading…
Add table
Reference in a new issue