This avoids too much rebuilding, and makes it easier to see which branches are failing.
19 lines
569 B
Python
19 lines
569 B
Python
slaves = [
|
|
{'name': 'linux_something_something',
|
|
'password': 'something',
|
|
'platform': 'linux_centos7',
|
|
'platform_short': 'linux'}
|
|
{'name': 'macOS_10_15_something_something',
|
|
'password': 'something',
|
|
'platform': 'macOS_10_15',
|
|
'platform_short': 'macos'}
|
|
{'name': 'macOS_10_9_something_something',
|
|
'password': 'something',
|
|
'platform': 'macOS_10_9',
|
|
'platform_short': 'macos'}
|
|
{'name': 'windows_something_something',
|
|
'password': 'something',
|
|
'platform': 'windows',
|
|
'platform_short': 'windows'}
|
|
]
|