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
diff --git a/buildtools/buildbot/linux_amd64_pthreads/buildbot.tac b/buildtools/buildbot/linux_amd64_pthreads/buildbot.tac
new file mode 100644 (file)
index 0000000..37f111d
--- /dev/null
@@ -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)
+