summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorms <ms@taler.net>2021-07-27 11:51:25 +0200
committerms <ms@taler.net>2021-07-27 11:51:25 +0200
commit17d1a243bd6da8321d747b7bc44805ebf392bd08 (patch)
tree1812db438a8030a7bacdd2015a254bc8b86b3bc0 /bin
parentd9757348856cea532dadf711c7db5a4034348157 (diff)
downloaddeployment-17d1a243bd6da8321d747b7bc44805ebf392bd08.tar.gz
deployment-17d1a243bd6da8321d747b7bc44805ebf392bd08.tar.bz2
deployment-17d1a243bd6da8321d747b7bc44805ebf392bd08.zip
installing Libeufin along integration tests
Diffstat (limited to 'bin')
-rwxr-xr-xbin/taler-deployment13
1 files changed, 10 insertions, 3 deletions
diff --git a/bin/taler-deployment b/bin/taler-deployment
index 6a96568..6f21d0d 100755
--- 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",