[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[taler-deployment] branch master updated: -fix build order
From: |
gnunet |
Subject: |
[taler-deployment] branch master updated: -fix build order |
Date: |
Tue, 01 Jun 2021 19:49:31 +0200 |
This is an automated email from the git hooks/post-receive script.
grothoff pushed a commit to branch master
in repository deployment.
The following commit(s) were added to refs/heads/master by this push:
new 14413ee -fix build order
14413ee is described below
commit 14413ee995c87545403f4252167b635bcdec84be
Author: Christian Grothoff <christian@grothoff.org>
AuthorDate: Tue Jun 1 19:46:59 2021 +0200
-fix build order
---
bin/taler-deployment | 72 ++++++++++++++++++++++++++--------------------------
1 file changed, 36 insertions(+), 36 deletions(-)
diff --git a/bin/taler-deployment b/bin/taler-deployment
index 636b8e5..ea1af93 100755
--- a/bin/taler-deployment
+++ b/bin/taler-deployment
@@ -302,6 +302,12 @@ def get_repos(envname):
[],
build_docs,
),
+ Repo(
+ "wallet-core",
+ "git://git.taler.net/wallet-core",
+ [],
+ build_wallet,
+ ),
Repo(
"exchange",
"git://git.taler.net/exchange",
@@ -326,12 +332,6 @@ def get_repos(envname):
["exchange", "merchant"],
build_anastasis,
),
- Repo(
- "wallet-core",
- "git://git.taler.net/wallet-core",
- [],
- build_wallet,
- ),
]
if envname in ("coverage", "integrationtest",):
return [
@@ -346,6 +346,18 @@ def get_repos(envname):
"git://git.gnunet.org/gnunet.git",
[],
build_gnunet),
+ Repo(
+ "bank",
+ "git://git.taler.net/bank",
+ [],
+ build_bank
+ ),
+ Repo(
+ "wallet-core",
+ "git://git.taler.net/wallet-core",
+ [],
+ build_wallet,
+ ),
Repo(
"exchange",
"git://git.taler.net/exchange",
@@ -376,18 +388,6 @@ def get_repos(envname):
["exchange", "merchant"],
build_anastasis,
),
- Repo(
- "bank",
- "git://git.taler.net/bank",
- [],
- build_bank
- ),
- Repo(
- "wallet-core",
- "git://git.taler.net/wallet-core",
- [],
- build_wallet,
- ),
Repo(
"merchant-backoffice",
"git://git.taler.net/merchant-backoffice",
@@ -405,6 +405,12 @@ def get_repos(envname):
[],
build_libmicrohttpd,
),
+ Repo(
+ "bank",
+ "git://git.taler.net/bank",
+ [],
+ build_bank,
+ ),
Repo(
"gnunet",
"git://git.gnunet.org/gnunet.git",
@@ -423,12 +429,6 @@ def get_repos(envname):
["exchange", "libmicrohttpd"],
build_merchant,
),
- Repo(
- "bank",
- "git://git.taler.net/bank",
- [],
- build_bank,
- ),
Repo(
"taler-merchant-demos",
"git://git.taler.net/taler-merchant-demos",
@@ -444,6 +444,12 @@ def get_repos(envname):
[],
build_wallet,
),
+ Repo(
+ "bank",
+ "git://git.taler.net/bank",
+ [],
+ build_bank,
+ ),
Repo(
"libmicrohttpd",
"git://git.gnunet.org/libmicrohttpd.git",
@@ -456,18 +462,18 @@ def get_repos(envname):
[],
build_gnunet,
),
- Repo(
- "exchange",
- "git://git.taler.net/exchange",
- ["gnunet", "libmicrohttpd"],
- build_exchange,
- ),
Repo(
"twister",
"git://git.taler.net/twister",
["gnunet", "exchange"],
build_twister,
),
+ Repo(
+ "exchange",
+ "git://git.taler.net/exchange",
+ ["gnunet", "libmicrohttpd"],
+ build_exchange,
+ ),
Repo(
"merchant",
"git://git.taler.net/merchant",
@@ -486,12 +492,6 @@ def get_repos(envname):
["gnunet", "libmicrohttpd"],
build_sync,
),
- Repo(
- "bank",
- "git://git.taler.net/bank",
- [],
- build_bank,
- ),
Repo(
"taler-merchant-demos",
"git://git.taler.net/taler-merchant-demos",
--
To stop receiving notification emails like this one, please contact
gnunet@gnunet.org.
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [taler-deployment] branch master updated: -fix build order,
gnunet <=