[llvm-commits] [zorg] r98282 - /zorg/trunk/buildbot/smooshlab/slave/org.llvm.smooshlab.slave.plist
Daniel Dunbar
daniel at zuster.org
Thu Mar 11 11:53:22 PST 2010
Author: ddunbar
Date: Thu Mar 11 13:53:21 2010
New Revision: 98282
URL: http://llvm.org/viewvc/llvm-project?rev=98282&view=rev
Log:
Override the default number of processes, on OS X desktop this defaults to 512 which is low for a buildbot.
Also, fix a missing SoftResourceLimits line, which 10.5 launchd wasn't thrilled about.
Modified:
zorg/trunk/buildbot/smooshlab/slave/org.llvm.smooshlab.slave.plist
Modified: zorg/trunk/buildbot/smooshlab/slave/org.llvm.smooshlab.slave.plist
URL: http://llvm.org/viewvc/llvm-project/zorg/trunk/buildbot/smooshlab/slave/org.llvm.smooshlab.slave.plist?rev=98282&r1=98281&r2=98282&view=diff
==============================================================================
--- zorg/trunk/buildbot/smooshlab/slave/org.llvm.smooshlab.slave.plist (original)
+++ zorg/trunk/buildbot/smooshlab/slave/org.llvm.smooshlab.slave.plist Thu Mar 11 13:53:21 2010
@@ -1,44 +1,49 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
-<dict>
- <key>Label</key>
- <string>org.llvm.smooshlab.slave</string>
-
- <!-- Change this to the user you want to run buildbot as -->
- <key>UserName</key>
- <string>buildslave</string>
-
- <!-- Change this to your buildbot working directory -->
- <key>WorkingDirectory</key>
- <string>/Users/buildslave/zorg/buildbot/smooshlab/slave</string>
-
- <key>ProgramArguments</key>
- <array>
- <string>/usr/bin/twistd</string>
- <string>--nodaemon</string>
- <string>--python=buildbot.tac</string>
- <string>--logfile=twistd.log</string>
- <string>--prefix=smooshlab</string>
- </array>
-
- <key>KeepAlive</key>
- <dict>
- <key>SuccessfulExit</key>
- <false/>
- </dict>
-
- <key>RunAtLoad</key>
- <true/>
-
- <dict>
- <key>NumberOfFiles</key>
- <integer>1024</integer>
- </dict>
- <key>HardResourceLimits</key>
- <dict>
- <key>NumberOfFiles</key>
- <integer>1024</integer>
- </dict>
-</dict>
+ <dict>
+ <key>Label</key>
+ <string>org.llvm.smooshlab.slave</string>
+
+ <!-- Change this to the user you want to run buildbot as -->
+ <key>UserName</key>
+ <string>buildslave</string>
+
+ <!-- Change this to your buildbot working directory -->
+ <key>WorkingDirectory</key>
+ <string>/Users/buildslave/zorg/buildbot/smooshlab/slave</string>
+
+ <key>ProgramArguments</key>
+ <array>
+ <string>/usr/bin/twistd</string>
+ <string>--nodaemon</string>
+ <string>--python=buildbot.tac</string>
+ <string>--logfile=twistd.log</string>
+ <string>--prefix=smooshlab</string>
+ </array>
+
+ <key>KeepAlive</key>
+ <dict>
+ <key>SuccessfulExit</key>
+ <false/>
+ </dict>
+
+ <key>RunAtLoad</key>
+ <true/>
+
+ <key>SoftResourceLimits</key>
+ <dict>
+ <key>NumberOfFiles</key>
+ <integer>1024</integer>
+ <key>NumberOfProcesses</key>
+ <integer>2048</integer>
+ </dict>
+ <key>HardResourceLimits</key>
+ <dict>
+ <key>NumberOfFiles</key>
+ <integer>1024</integer>
+ <key>NumberOfProcesses</key>
+ <integer>2048</integer>
+ </dict>
+ </dict>
</plist>
More information about the llvm-commits
mailing list