commit d0ed2c7d68183da3639e81513c288c6c2a7a0b5d
parent 1dde003d9b9a6b47a3f0c1312f6c73d74d953acf
Author: Christian Grothoff <christian@grothoff.org>
Date: Tue, 25 Feb 2020 12:41:19 +0100
build wallet so that 'make check' could work
Diffstat:
1 file changed, 28 insertions(+), 1 deletion(-)
diff --git 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(