Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
d059b418a0ab4fc743bb98935b1c5260be0a23e4
[simgrid.git] / build / buildbot / dist-worker / buildbot.tac
1
2 from twisted.application import service
3 from buildbot.slave.bot import BuildSlave
4
5 basedir = r'/var/lib/buildbot/simgrid/dist-worker'
6 host = 'bob.loria.fr'
7 port = 9989
8 slavename = 'bob_dist'
9 from slave_account import passwd # Separate file to put this one in the SVN
10 keepalive = 600
11 usepty = 1
12 umask = None
13
14 application = service.Application('buildslave')
15 s = BuildSlave(host, port, slavename, passwd, basedir, keepalive, usepty,
16                umask=umask)
17 s.setServiceParent(application)
18