commit 42c4e0302f441116dcadef9a99ef23db54850680
parent 3449cb83bd42a1d6db9a94e985c7141be03f4c11
Author: MS <ms@taler.net>
Date: Thu, 17 Sep 2020 14:04:14 +0200
build wallet along other components
Diffstat:
1 file changed, 13 insertions(+), 0 deletions(-)
diff --git a/bin/taler-deployment b/bin/taler-deployment
@@ -169,6 +169,13 @@ def build_exchange(r: Repo, p: Path):
(p / "taler-buildstamp").touch()
+def build_wallet(r, p):
+ update_checkout(r, p)
+ subprocess.run(["./bootstrap"], check=True)
+ default_configure()
+ subprocess.run(["make", "install"], check=True)
+ (p / "taler-buildstamp").touch()
+
def build_twister(r, p):
update_checkout(r, p)
subprocess.run(["./bootstrap"], check=True)
@@ -330,6 +337,12 @@ def get_repos(envname):
if envname in ("local", "demo", "int", "test", "auditor-reporter-test", "auditor-reporter-demo"):
return [
Repo(
+ "wallet",
+ "git://git.taler.net/wallet-core",
+ [],
+ build_wallet,
+ ),
+ Repo(
"libmicrohttpd",
"git://gnunet.org/libmicrohttpd.git",
[],