Caution
Buildbot no longer supports Python 2.7 on the Buildbot master.
2.5.12.22. Configure
- class buildbot.steps.shell.Configure
This is intended to handle the ./configure step from autoconf-style projects, or the perl Makefile.PL
step from perl MakeMaker.pm
-style modules.
The default command is ./configure but you can change this by providing a command=
parameter.
The arguments are identical to ShellCommand
.
from buildbot.plugins import steps
f.addStep(steps.Configure())