summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2020-02-25 12:41:19 +0100
committerChristian Grothoff <christian@grothoff.org>2020-02-25 12:41:19 +0100
commitd0ed2c7d68183da3639e81513c288c6c2a7a0b5d (patch)
tree5867201cc4cb601b68a87cfdbf64f2325ee35565
parent1dde003d9b9a6b47a3f0c1312f6c73d74d953acf (diff)
downloaddeployment-d0ed2c7d68183da3639e81513c288c6c2a7a0b5d.tar.gz
deployment-d0ed2c7d68183da3639e81513c288c6c2a7a0b5d.tar.bz2
deployment-d0ed2c7d68183da3639e81513c288c6c2a7a0b5d.zip
build wallet so that 'make check' could work
-rw-r--r--buildbot/master.cfg29
1 files changed, 28 insertions, 1 deletions
diff --git a/buildbot/master.cfg b/buildbot/master.cfg
index 8993702..da7a28f 100644
--- a/buildbot/master.cfg
+++ b/buildbot/master.cfg
@@ -521,7 +521,34 @@ INTEGRATIONTEST_FACTORY.addStep(
description="Running yarn install of wallet",
descriptionDone="Correctly installed",
command=["npm", "install", "-g", "--prefix", "$HOME", "taler-wallet"],
- workdir="build/"
+ workdir="../../sources/wallet-core"
+ )
+)
+INTEGRATIONTEST_FACTORY.addStep(
+ ShellCommand(
+ name="fetch",
+ description="Running local bootstrap of wallet",
+ descriptionDone="wallet bootstrap done",
+ command=["bootstrap"],
+ workdir="../../sources/wallet-core"
+ )
+)
+INTEGRATIONTEST_FACTORY.addStep(
+ ShellCommand(
+ name="fetch",
+ description="Running local configure of wallet",
+ descriptionDone="wallet configure done",
+ command=["configure", "--prefix=$HOME/local/],
+ workdir="../../sources/wallet-core"
+ )
+)
+INTEGRATIONTEST_FACTORY.addStep(
+ ShellCommand(
+ name="fetch",
+ description="Running local make of wallet",
+ descriptionDone="wallet make done",
+ command=["configure", "--prefix=$HOME/local/],
+ workdir="../../sources/wallet-core"
)
)
INTEGRATIONTEST_FACTORY.addStep(