Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Add the configuration of some slaves in the SVN, making sure that it does not contain...
authormquinson <mquinson@48e7efb5-ca39-0410-a469-dd3cf9ba447f>
Thu, 8 Nov 2007 10:21:48 +0000 (10:21 +0000)
committermquinson <mquinson@48e7efb5-ca39-0410-a469-dd3cf9ba447f>
Thu, 8 Nov 2007 10:21:48 +0000 (10:21 +0000)
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/simgrid/simgrid/trunk@4997 48e7efb5-ca39-0410-a469-dd3cf9ba447f

build/buildbot/dist-worker/buildbot.tac [new file with mode: 0644]
build/buildbot/linux_amd64_pthreads/buildbot.tac [new file with mode: 0644]
build/buildbot/linux_amd64_ucontext/buildbot.tac [new file with mode: 0644]
build/buildbot/master/buildbot.tac [moved from build/buildbot/buildbot.tac with 100% similarity]
build/buildbot/master/master.cfg [moved from build/buildbot/master.cfg with 100% similarity]

diff --git a/build/buildbot/dist-worker/buildbot.tac b/build/buildbot/dist-worker/buildbot.tac
new file mode 100644 (file)
index 0000000..78b3461
--- /dev/null
@@ -0,0 +1,18 @@
+
+from twisted.application import service
+from buildbot.slave.bot import BuildSlave
+
+basedir = r'/var/lib/buildbot/simgrid/dist-worker'
+host = 'bob.loria.fr'
+port = 9989
+slavename = 'bob_dist_worker'
+from 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)
+
diff --git a/build/buildbot/linux_amd64_pthreads/buildbot.tac b/build/buildbot/linux_amd64_pthreads/buildbot.tac
new file mode 100644 (file)
index 0000000..61fb732
--- /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_pthreads'
+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)
+
diff --git a/build/buildbot/linux_amd64_ucontext/buildbot.tac b/build/buildbot/linux_amd64_ucontext/buildbot.tac
new file mode 100644 (file)
index 0000000..f460ab9
--- /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_ucontext'
+host = 'bob.loria.fr'
+port = 9989
+slavename = 'bob_ucontext'
+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)
+