summaryrefslogtreecommitdiff
path: root/buildbot
diff options
context:
space:
mode:
Diffstat (limited to 'buildbot')
-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()