commit ffc751ec43760e559fb2d3465aed649831c68dd8
parent 142ffb23ede04e06c05266fd69e0419c8c17a226
Author: Marcello Stanisci <marcello.stanisci@inria.fr>
Date: Wed, 28 Jun 2017 21:59:20 +0200
Missing ShellCommand
Diffstat:
1 file changed, 6 insertions(+), 5 deletions(-)
diff --git a/buildbot/master.cfg b/buildbot/master.cfg
@@ -92,11 +92,12 @@ wallet_factory.addStep(Git(repourl='git://git.taler.net/wallet-webex.git',
alwaysUseLatest=True,
haltOnFailure=True,
branch='master'))
-wallet_factory.addStep(name="configuration",
- descrition="Running configure script",
- descriptionDone="Correctly configured",
- command=["./configure && make check"],
- workdir="build/")
+
+wallet_factory.addStep(ShellCommand(name="configuration",
+ descrition="Running configure script",
+ descriptionDone="Correctly configured",
+ command=["./configure && make check"],
+ workdir="build/")
lcov_factory = util.BuildFactory()