mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
There's no real reason why we can't also include Debian 10 Arm package in the repo
Signed-off-by: Pedro Algarvio <palgarvio@vmware.com>
This commit is contained in:
parent
b5cd1c8303
commit
b4e14cbcbd
2 changed files with 4 additions and 8 deletions
4
.github/workflows/build-deb-repo.yml
vendored
4
.github/workflows/build-deb-repo.yml
vendored
|
@ -37,6 +37,10 @@ jobs:
|
|||
version: "10"
|
||||
arch: x86_64
|
||||
key-id: 0E08A149DE57BFBE
|
||||
- distro: debian
|
||||
version: "10"
|
||||
arch: aarch64
|
||||
key-id: 0E08A149DE57BFBE
|
||||
- distro: debian
|
||||
version: "11"
|
||||
arch: x86_64
|
||||
|
|
|
@ -93,30 +93,25 @@ def debian(
|
|||
"label": "deb10ary",
|
||||
"codename": "buster",
|
||||
"suitename": "oldstable",
|
||||
"arm_support": False,
|
||||
},
|
||||
"11": {
|
||||
"label": "deb11ary",
|
||||
"codename": "bullseye",
|
||||
"suitename": "stable",
|
||||
"arm_support": True,
|
||||
},
|
||||
},
|
||||
"ubuntu": {
|
||||
"18.04": {
|
||||
"label": "salt_ubuntu1804",
|
||||
"codename": "bionic",
|
||||
"arm_support": False,
|
||||
},
|
||||
"20.04": {
|
||||
"label": "salt_ubuntu2004",
|
||||
"codename": "focal",
|
||||
"arm_support": True,
|
||||
},
|
||||
"22.04": {
|
||||
"label": "salt_ubuntu2204",
|
||||
"codename": "jammy",
|
||||
"arm_support": True,
|
||||
},
|
||||
},
|
||||
}
|
||||
|
@ -134,9 +129,6 @@ def debian(
|
|||
distro_arch = "arm64"
|
||||
|
||||
distro_details = distro_info[distro][distro_version]
|
||||
if distro_arch == "arm64" and not distro_details["arm_support"]:
|
||||
ctx.error(f"There's no arm64 support for {display_name}.")
|
||||
ctx.exit(1)
|
||||
|
||||
ctx.info("Distribution Details:")
|
||||
ctx.info(distro_details)
|
||||
|
|
Loading…
Add table
Reference in a new issue