Changeset 2672
- Timestamp:
- 03/06/08 11:13:33 (9 months ago)
- Files:
-
- buildbot/master/master.cfg (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
buildbot/master/master.cfg
r2671 r2672 40 40 from buildbot.process import factory 41 41 42 compilers = { "sbcl" : "sbcl --disable-debugger --no-sysinit --no-userinit --load build.lisp --eval",43 "ccl" : "ccl -n -b -l build.lisp -e",44 "cmucl" : "lisp -noinit -nositeinit -batch -load build.lisp -e" }42 compilers = { "sbcl" : "sbcl --disable-debugger --no-sysinit --no-userinit --load %s --eval %s", 43 "ccl" : "ccl -n -b -l %s -e %s", 44 "cmucl" : "lisp -noinit -nositeinit -batch -load %s -e %s" } 45 45 46 46 def make_factory(branch, compiler): 47 47 f = factory.BuildFactory() 48 48 f.addStep(source.SVN(svnurl="svn://bknr.net/svn/" + branch)) 49 f.addStep(shell.ShellCommand(command=compilers[compiler] .split(" ") + ["(build::build)"],50 description=["build"]))51 f.addStep(shell.ShellCommand(command=compilers[compiler] .split(" ") + ["(build::test)"],52 description=["test"]))49 f.addStep(shell.ShellCommand(command=compilers[compiler] % ("build.lisp", "(build::build)"), 50 description=["build"])) 51 f.addStep(shell.ShellCommand(command=compilers[compiler] % ("build.lisp", "(build::test)"), 52 description=["test"])) 53 53 return f 54 54
