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.
This commit is contained in:
2020-06-15 17:28:23 +02:00
parent ce6e2526d2
commit 3cd1ea8005
2 changed files with 64 additions and 44 deletions

View File

@@ -1,5 +1,18 @@
slaves = [
{'name': 'linux_glibc219_x86_64_chroot',
'password': 'barbarianna',
'builders': ['linux_glibc217_x86_64_cmake']}
{'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'}
]