summaryrefslogtreecommitdiff
path: root/bin/taler-deployment
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2022-08-23 21:12:37 +0200
committerChristian Grothoff <christian@grothoff.org>2022-08-23 21:12:37 +0200
commit3328e55a398a901c7257c1f9062bbb32c7e4803f (patch)
tree87b3190d3402bbd0c3a9f97f2109052e69fb143e /bin/taler-deployment
parent87355e76ed445f63b1b60ee5594dbd452a50125d (diff)
downloaddeployment-3328e55a398a901c7257c1f9062bbb32c7e4803f.tar.gz
deployment-3328e55a398a901c7257c1f9062bbb32c7e4803f.tar.bz2
deployment-3328e55a398a901c7257c1f9062bbb32c7e4803f.zip
-update demo
Diffstat (limited to 'bin/taler-deployment')
-rwxr-xr-xbin/taler-deployment46
1 files changed, 18 insertions, 28 deletions
diff --git a/bin/taler-deployment b/bin/taler-deployment
index 6b098a5..680cb26 100755
--- a/bin/taler-deployment
+++ b/bin/taler-deployment
@@ -255,16 +255,6 @@ def build_sync(r, p):
(p / "taler-buildstamp").touch()
-def build_bank(r, p):
- update_checkout(r, p)
- subprocess.run(["pip3", "install", "poetry"], check=True)
- subprocess.run(["./bootstrap"], check=True)
- pfx = Path.home() / "local"
- pyconfigure()
- subprocess.run(["make", "install"], check=True)
- (p / "taler-buildstamp").touch()
-
-
def build_demos(r, p):
update_checkout(r, p)
pfx = Path.home() / "local"
@@ -296,6 +286,12 @@ def get_repos(envname):
if envname in ("docs-builder",):
return [
Repo(
+ "libeufin",
+ "git://git.taler.net/libeufin.git",
+ [],
+ build_libeufin,
+ ),
+ Repo(
"libmicrohttpd",
"git://git.gnunet.org/libmicrohttpd.git",
[],
@@ -352,12 +348,6 @@ def get_repos(envname):
["libmicrohttpd"],
build_gnunet),
Repo(
- "bank",
- "git://git.taler.net/bank",
- [],
- build_bank
- ),
- Repo(
"wallet-core",
"git://git.taler.net/wallet-core",
[],
@@ -387,16 +377,16 @@ def get_repos(envname):
if envname in ("euro", "chf"):
return [
Repo(
- "libmicrohttpd",
- "git://git.gnunet.org/libmicrohttpd.git",
+ "libeufin",
+ "git://git.taler.net/libeufin.git",
[],
- build_libmicrohttpd,
+ build_libeufin,
),
Repo(
- "bank",
- "git://git.taler.net/bank",
+ "libmicrohttpd",
+ "git://git.gnunet.org/libmicrohttpd.git",
[],
- build_bank,
+ build_libmicrohttpd,
),
Repo(
"gnunet",
@@ -426,16 +416,16 @@ def get_repos(envname):
if envname in ("tanker", "local", "demo", "int", "test", "auditor-reporter-test", "auditor-reporter-demo"):
return [
Repo(
- "wallet-core",
- "git://git.taler.net/wallet-core",
+ "libeufin",
+ "git://git.taler.net/libeufin.git",
[],
- build_wallet,
+ build_libeufin,
),
Repo(
- "bank",
- "git://git.taler.net/bank",
+ "wallet-core",
+ "git://git.taler.net/wallet-core",
[],
- build_bank,
+ build_wallet,
),
Repo(
"libmicrohttpd",