summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarcello Stanisci <marcello.stanisci@inria.fr>2017-06-28 21:59:20 +0200
committerMarcello Stanisci <marcello.stanisci@inria.fr>2017-06-28 21:59:20 +0200
commitffc751ec43760e559fb2d3465aed649831c68dd8 (patch)
tree1093da8eaa6db6bc9e08e760446bd45ab353673d
parent142ffb23ede04e06c05266fd69e0419c8c17a226 (diff)
downloaddeployment-ffc751ec43760e559fb2d3465aed649831c68dd8.tar.gz
deployment-ffc751ec43760e559fb2d3465aed649831c68dd8.tar.bz2
deployment-ffc751ec43760e559fb2d3465aed649831c68dd8.zip
Missing ShellCommand
-rw-r--r--buildbot/master.cfg11
1 files changed, 6 insertions, 5 deletions
diff --git a/buildbot/master.cfg b/buildbot/master.cfg
index ad20186..ec4c63a 100644
--- 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()