Skip to content

Commit

Permalink
add gentoo linux_static buildslave
Browse files Browse the repository at this point in the history
  • Loading branch information
jK committed Aug 4, 2012
1 parent b18bbd3 commit 9b52073
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion buildbot/master/master.cfg
Expand Up @@ -71,6 +71,7 @@ c['slaves'].append(BuildSlave("abma1", passwords.abma1, max_builds=1, proper
c['slaves'].append(BuildSlave("koshi1", passwords.koshi1, max_builds=1, properties={'jobs': 2})) c['slaves'].append(BuildSlave("koshi1", passwords.koshi1, max_builds=1, properties={'jobs': 2}))
c['slaves'].append(BuildSlave("macosx1", passwords.macosx1, max_builds=1, properties={'jobs': 1})) c['slaves'].append(BuildSlave("macosx1", passwords.macosx1, max_builds=1, properties={'jobs': 1}))
c['slaves'].append(BuildSlave("zydox1", passwords.zydox1, max_builds=1, properties={'jobs': 2})) c['slaves'].append(BuildSlave("zydox1", passwords.zydox1, max_builds=1, properties={'jobs': 2}))
c['slaves'].append(BuildSlave("jk1", passwords.jk1, max_builds=1, properties={'jobs': 2}))
c['slavePortnum'] = 9989 c['slavePortnum'] = 9989
win_linux_slaves = ["koshi1"] win_linux_slaves = ["koshi1"]


Expand Down Expand Up @@ -449,7 +450,7 @@ macosx_builder = {


ubuntu_static_builder = { ubuntu_static_builder = {
'name': 'linux-static', 'name': 'linux-static',
'slavenames': win_linux_slaves, 'slavenames': ['jk1'],
'builddir': 'linux-static', 'builddir': 'linux-static',
'factory': LinuxStaticBuildFactory(), 'factory': LinuxStaticBuildFactory(),
'properties': {'default-config': 'default'} 'properties': {'default-config': 'default'}
Expand Down

2 comments on commit 9b52073

@abma
Copy link
Contributor

@abma abma commented on 9b52073 Aug 5, 2012

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

applied!

@jk3064
Copy link
Contributor

@jk3064 jk3064 commented on 9b52073 Aug 5, 2012

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thx.
Worked the whole time on the mingw setup, running into one problem after another (currently cmake doesn't find the boost libs).
So I decided to push the static linux before.

Please sign in to comment.