mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
Do not run arm64 onedir upgrade package tests
This commit is contained in:
parent
63ca5e7e2b
commit
92c10c9154
1 changed files with 12 additions and 2 deletions
14
tools/ci.py
14
tools/ci.py
|
@ -640,9 +640,19 @@ def pkg_matrix(ctx: Context, distro_slug: str):
|
|||
_matrix = []
|
||||
sessions = [
|
||||
"test-pkgs-3",
|
||||
"'test-upgrade-pkgs-3(classic=False)'",
|
||||
]
|
||||
if distro_slug not in ["centosstream-9", "ubuntu-22.04"]:
|
||||
if distro_slug not in [
|
||||
"debian-11-arm64",
|
||||
"ubuntu-20.04-arm64",
|
||||
"ubuntu-22.04-arm64",
|
||||
]:
|
||||
# These OS's never had arm64 packages built for them
|
||||
# with the tiamate onedir packages.
|
||||
# we will need to ensure when we release 3006.0
|
||||
# we allow for 3006.0 jobs to run, because then
|
||||
# we will have arm64 onedir packages to upgrade from
|
||||
sessions.append("'test-upgrade-pkgs-3(classic=False)'")
|
||||
if distro_slug not in ["centosstream-9", "ubuntu-22.04", "ubuntu-22.04-arm64"]:
|
||||
# Packages for these OSs where never built for classic previously
|
||||
sessions.append("'test-upgrade-pkgs-3(classic=True)'")
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue