-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathedu.berkeley.bic.michael.osx-10.6.plist
47 lines (40 loc) · 1.57 KB
/
edu.berkeley.bic.michael.osx-10.6.plist
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<?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 ">
<!-- See: http://trac.buildbot.net/wiki/UsingLaunchd -->
<plist version="1.0">
<dict>
<key>Label</key>
<string>edu.berkeley.bic.michael.osx-10.6</string>
<key>EnvironmentVariables</key>
<dict>
<!-- Need local installs on the PATH - for nosetests in particular-->
<key>PATH</key>
<string>/Library/Frameworks/Python.framework/Versions/2.7/bin:/bin:/usr/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/local/git/bin</string>
<key>MACOSX_DEPLOYMENT_TARGET</key>
<string>10.6</string>
<key>CC</key>
<string>clang</string>
</dict>
<!-- 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/osx-10.6</string>
<key>ProgramArguments</key>
<array>
<string>/Users/buildslave/Library/Python/2.7/bin/twistd</string>
<string>--nodaemon</string>
<string>--python=buildbot.tac</string>
<string>--logfile=buildbot.log</string>
<string>--prefix=slave</string>
</array>
<key>KeepAlive</key>
<dict>
<key>SuccessfulExit</key>
<false/>
</dict>
<key>RunAtLoad</key>
<true/>
</dict>
</plist>