summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarcello Stanisci <marcello.stanisci@inria.fr>2017-06-29 10:02:32 +0200
committerMarcello Stanisci <marcello.stanisci@inria.fr>2017-06-29 10:02:32 +0200
commita1cab9f28929f6fbb9277c37b6840102beb64424 (patch)
tree745130c54ee2a6cbf756dc769079795fea2fe18a
parent07c704d331e340032f343e19b43f401239c830f5 (diff)
downloaddeployment-a1cab9f28929f6fbb9277c37b6840102beb64424.tar.gz
deployment-a1cab9f28929f6fbb9277c37b6840102beb64424.tar.bz2
deployment-a1cab9f28929f6fbb9277c37b6840102beb64424.zip
fix invocation of wallet tests
-rw-r--r--buildbot/master.cfg8
1 files changed, 7 insertions, 1 deletions
diff --git a/buildbot/master.cfg b/buildbot/master.cfg
index 52c8bdb..fed93f1 100644
--- a/buildbot/master.cfg
+++ b/buildbot/master.cfg
@@ -96,7 +96,13 @@ wallet_factory.addStep(Git(repourl='git://git.taler.net/wallet-webex.git',
wallet_factory.addStep(ShellCommand(name="configuration",
description="Running configure script",
descriptionDone="Correctly configured",
- command=["./configure && make check"],
+ command=["./configure"],
+ workdir="build/"))
+
+wallet_factory.addStep(ShellCommand(name="test",
+ description="Running wallet tests",
+ descriptionDone="Test correctly run",
+ command=["make", "check"],
workdir="build/"))
lcov_factory = util.BuildFactory()