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
Brecht Van Lommel 3cd1ea8005 Buildbot: add separate builders for master, lts and custom branches
This avoids too much rebuilding, and makes it easier to see which branches
are failing.
2020-06-15 17:38:34 +02:00

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'}
]