X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/f4ae32c676421a6cd5c076b273dd7a07f2695957..98cd9c3abed975096b3b915a6f321522760c2fca:/buildtools/buildbot/linux_amd64_pthreads/buildbot.tac diff --git a/buildtools/buildbot/linux_amd64_pthreads/buildbot.tac b/buildtools/buildbot/linux_amd64_pthreads/buildbot.tac new file mode 100644 index 0000000000..37f111d9fc --- /dev/null +++ b/buildtools/buildbot/linux_amd64_pthreads/buildbot.tac @@ -0,0 +1,18 @@ + +from twisted.application import service +from buildbot.slave.bot import BuildSlave + +basedir = r'/var/lib/buildbot/simgrid/linux_amd64_pthreads' +host = 'bob.loria.fr' +port = 9989 +slavename = 'bob' +from slave_account import passwd # Separate file to put this one in the SVN +keepalive = 600 +usepty = 1 +umask = None + +application = service.Application('buildslave') +s = BuildSlave(host, port, slavename, passwd, basedir, keepalive, usepty, + umask=umask) +s.setServiceParent(application) +