summaryrefslogtreecommitdiff
path: root/bin/taler-deployment
diff options
context:
space:
mode:
authorMarcello Stanisci <stanisci.m@gmail.com>2019-11-22 22:01:54 +0100
committerMarcello Stanisci <stanisci.m@gmail.com>2019-11-22 22:01:54 +0100
commita402ec9b16a2bce61d977e06590dd7cf7d7659bc (patch)
tree7e4b7cdb6c4cc274151c6c7f0cfcf7ce8dadd197 /bin/taler-deployment
parent8e699007087b93bbc1457a701afdcfa07a65c9f7 (diff)
downloaddeployment-a402ec9b16a2bce61d977e06590dd7cf7d7659bc.tar.gz
deployment-a402ec9b16a2bce61d977e06590dd7cf7d7659bc.tar.bz2
deployment-a402ec9b16a2bce61d977e06590dd7cf7d7659bc.zip
euro repo list
Diffstat (limited to 'bin/taler-deployment')
-rwxr-xr-xbin/taler-deployment26
1 files changed, 26 insertions, 0 deletions
diff --git a/bin/taler-deployment b/bin/taler-deployment
index 4f9bae8..0be2637 100755
--- a/bin/taler-deployment
+++ b/bin/taler-deployment
@@ -258,6 +258,32 @@ def get_repos(envname):
return []
if envname == "docs-builder":
return [Repo("docs", "git://gnunet.org/docs.git", [], build_docs)]
+ if envname == "euro":
+ return [
+ Repo(
+ "libmicrohttpd",
+ "git://gnunet.org/libmicrohttpd.git",
+ [],
+ build_libmicrohttpd,
+ ),
+ Repo("gnunet", "git://gnunet.org/gnunet.git", [], build_gnunet),
+ Repo(
+ "exchange",
+ "git://git.taler.net/exchange",
+ ["gnunet", "libmicrohttpd"],
+ build_exchange,
+ ),
+ Repo(
+ "merchant",
+ "git://git.taler.net/merchant",
+ ["exchange", "libmicrohttpd"],
+ build_merchant,
+ ),
+
+ Repo("bank", "git://git.taler.net/bank", [], build_bank),
+ Repo("landing", "git://git.taler.net/landing", [], build_landing),
+ Repo("donations", "git://git.taler.net/donations", [], build_donations),
+ ]
if envname in ("demo", "int", "test", "auditor-reporter"):
return [
Repo(