commit 17d1a243bd6da8321d747b7bc44805ebf392bd08
parent d9757348856cea532dadf711c7db5a4034348157
Author: ms <ms@taler.net>
Date: Tue, 27 Jul 2021 11:51:25 +0200
installing Libeufin along integration tests
Diffstat:
1 file changed, 10 insertions(+), 3 deletions(-)
diff --git a/bin/taler-deployment b/bin/taler-deployment
@@ -149,6 +149,13 @@ def pyconfigure(*extra):
subprocess.run(["./configure"] + list(extra), check=True)
+def build_libeufin(r: Repo, p: Path):
+ update_checkout(r, p)
+ subprocess.run(["./bootstrap"], check=True)
+ default_configure_nc()
+ subprocess.run(["make", "install"], check=True)
+ (p / "taler-buildstamp").touch()
+
def build_libmicrohttpd(r: Repo, p: Path):
update_checkout(r, p)
subprocess.run(["./bootstrap"], check=True)
@@ -342,10 +349,10 @@ def get_repos(envname):
if envname in ("coverage", "integrationtest",):
return [
Repo(
- "libmicrohttpd",
- "git://git.gnunet.org/libmicrohttpd.git",
+ "libeufin",
+ "git://git.taler.net/libeufin.git",
[],
- build_libmicrohttpd,
+ build_libeufin,
),
Repo(
"gnunet",