Skip to content

Commit 0c67e11

Browse files
Skip arm/arm64 on non-UWP platform
1 parent 6a38361 commit 0c67e11

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

.azure-pipelines/organize_windows_artifacts.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,10 @@ def move(src, dest):
2626
include_copied = False
2727

2828
for platform, uwp in product(PLATFORMS, TRUE_FALSE):
29+
# No need to support ARM/ARM64 except for UWP.
30+
if not uwp and (platform.lower() == 'arm' or platform.lower() == 'arm64'):
31+
continue
32+
2933
base = outbase / '{}{}'.format(platform,
3034
'_uwp' if uwp else '')
3135
base.mkdir(parents=True, exist_ok=True)

0 commit comments

Comments
 (0)