We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7c35b4f commit 5d57660Copy full SHA for 5d57660
pr-checks/sync.py
@@ -27,7 +27,7 @@
27
"nightly-latest"
28
]
29
30
-def is_os_and_version_excluded(version, os, exclude_params):
+def is_os_and_version_excluded(os, version, exclude_params):
31
for exclude_param in exclude_params:
32
if exclude_param[0] == os and exclude_param[1] == version:
33
return True
@@ -73,7 +73,7 @@ def writeHeader(checkStream):
73
74
for runnerImage in runnerImagesForOs:
75
# Skip appending this combination to the matrix if it is explicitly excluded.
76
- if is_os_and_version_excluded(version, operatingSystem, excludedOsesAndVersions):
+ if is_os_and_version_excluded(operatingSystem, version, excludedOsesAndVersions):
77
continue
78
79
# Prior to CLI v2.15.1, ARM runners were not supported by the build tracer.
0 commit comments