mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
Add macos arm onedir deps
This commit is contained in:
parent
36dd81ced8
commit
521559a423
1 changed files with 3 additions and 1 deletions
|
@ -577,7 +577,9 @@ def build_matrix(
|
|||
if github_output is None:
|
||||
ctx.warn("The 'GITHUB_OUTPUT' variable is not set.")
|
||||
_matrix = [{"arch": "x86_64"}]
|
||||
if (
|
||||
if kind == "macos":
|
||||
_matrix.append({"arch": "arm64"})
|
||||
elif (
|
||||
kind == "linux"
|
||||
and "LINUX_ARM_RUNNER" in os.environ
|
||||
and os.environ["LINUX_ARM_RUNNER"] != "0"
|
||||
|
|
Loading…
Add table
Reference in a new issue