Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
rename build directory into buildtool to avoid name clashes
[simgrid.git] / build / buildbot / linux_amd64_ucontext / buildbot.tac
diff --git a/build/buildbot/linux_amd64_ucontext/buildbot.tac b/build/buildbot/linux_amd64_ucontext/buildbot.tac
deleted file mode 100644 (file)
index 06dcad9..0000000
+++ /dev/null
@@ -1,18 +0,0 @@
-
-from twisted.application import service
-from buildbot.slave.bot import BuildSlave
-
-basedir = r'/var/lib/buildbot/simgrid/linux_amd64_ucontext'
-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)
-