Test Windows 2012+ using Azure by default.

pull/35507/head
Matt Clay 7 years ago
parent 7fa09390b0
commit 3b0dcf7f29

@ -73,6 +73,9 @@ class AnsibleCoreCI(object):
azure=(
'azure',
'rhel',
'windows/2012',
'windows/2012-R2',
'windows/2016',
),
parallels=(
'osx',
@ -88,6 +91,11 @@ class AnsibleCoreCI(object):
# assign default provider based on platform
self.provider = candidate
break
for candidate in providers:
if '%s/%s' % (platform, version) in providers[candidate]:
# assign default provider based on platform and version
self.provider = candidate
break
if self.provider in ('aws', 'azure'):
if self.provider != 'aws':

Loading…
Cancel
Save