mirror of
https://github.com/saltstack/salt.git
synced 2025-04-17 10:10:20 +00:00
More places disabling mac
This commit is contained in:
parent
6949dbdc9b
commit
5ba6add44e
1 changed files with 12 additions and 13 deletions
25
tools/ci.py
25
tools/ci.py
|
@ -1582,19 +1582,18 @@ def workflow_config(
|
|||
|
||||
# If there is no arm runner disable arm64
|
||||
if os.environ.get("LINUX_ARM_RUNNER", "0") == "0":
|
||||
for kind in kinds:
|
||||
jobs.update(
|
||||
{
|
||||
_.job_name: True if _.arch != "arm64" else False
|
||||
for _ in TEST_SALT_LISTING[kind] # type: ignore
|
||||
}
|
||||
)
|
||||
jobs.update(
|
||||
{
|
||||
_.job_name: True if _.arch != "arm64" else False
|
||||
for _ in TEST_SALT_PKG_LISTING[kind] # type: ignore
|
||||
}
|
||||
)
|
||||
jobs.update(
|
||||
{
|
||||
_.job_name: (True if _.arch != "arm64" else False)
|
||||
for _ in TEST_SALT_LISTING["linux"] # type: ignore
|
||||
}
|
||||
)
|
||||
jobs.update(
|
||||
{
|
||||
_.job_name: (True if _.arch != "arm64" else False)
|
||||
for _ in TEST_SALT_PKG_LISTING["linux"] # type: ignore
|
||||
}
|
||||
)
|
||||
|
||||
if skip_pkg_download_tests:
|
||||
jobs["test-pkg-download"] = False
|
||||
|
|
Loading…
Add table
Reference in a new issue