mirror of
https://github.com/pyTooling/Actions.git
synced 2026-02-12 11:06:56 +08:00
Fixed duplicated mingw64 combinations.
This commit is contained in:
9
.github/workflows/Parameters.yml
vendored
9
.github/workflows/Parameters.yml
vendored
@@ -193,10 +193,15 @@ jobs:
|
|||||||
combinations = [
|
combinations = [
|
||||||
(system, version)
|
(system, version)
|
||||||
for system in systems
|
for system in systems
|
||||||
if system in data['sys'] or system in data['runtime']
|
if system in data['sys']
|
||||||
for version in versions
|
for version in versions
|
||||||
if version in data['python']
|
if version in data['python']
|
||||||
and f"{system}:{version}" not in excludes
|
and f"{system}:{version}" not in excludes
|
||||||
|
] + [
|
||||||
|
(system, currentMSYS2Version)
|
||||||
|
for system in systems
|
||||||
|
if system in data['runtime']
|
||||||
|
and f"{system}:{currentMSYS2Version}" not in excludes
|
||||||
] + [
|
] + [
|
||||||
(system, version)
|
(system, version)
|
||||||
for system, version in includes
|
for system, version in includes
|
||||||
@@ -225,7 +230,7 @@ jobs:
|
|||||||
'runtime': runtime.upper(),
|
'runtime': runtime.upper(),
|
||||||
'shell': "msys2 {0}",
|
'shell': "msys2 {0}",
|
||||||
'pyicon': data['python'][currentMSYS2Version]['icon'],
|
'pyicon': data['python'][currentMSYS2Version]['icon'],
|
||||||
'python': currentMSYS2Version,
|
'python': version,
|
||||||
'envname': data['runtime'][runtime]['name'],
|
'envname': data['runtime'][runtime]['name'],
|
||||||
}
|
}
|
||||||
for runtime, version in combinations if runtime not in data['sys']
|
for runtime, version in combinations if runtime not in data['sys']
|
||||||
|
|||||||
Reference in New Issue
Block a user