Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
rename build directory into buildtool to avoid name clashes
[simgrid.git] / buildtools / buildbot / linux_amd64_pthreads / buildbot.tac
1
2 from twisted.application import service
3 from buildbot.slave.bot import BuildSlave
4
5 basedir = r'/var/lib/buildbot/simgrid/linux_amd64_pthreads'
6 host = 'bob.loria.fr'
7 port = 9989
8 slavename = 'bob'
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