This repository has been archived on 2023-02-19. You can view files and clone it, but cannot push or open issues or pull requests.
Files
blender-buildbot/master_private_template.py
Sergey Sharybin 67c034e3a0 Use more correct macOS builder name for 2.83 LTS
The deployment target is 10.9, but the host is running macOS 10.13
2020-06-16 16:56:21 +02:00

19 lines
575 B
Python

workers = [
{'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_13_something_something',
'password': 'something',
'platform': 'macOS_10_13',
'platform_short': 'macos'},
{'name': 'windows_something_something',
'password': 'something',
'platform': 'windows',
'platform_short': 'windows'}
]