summaryrefslogtreecommitdiff
path: root/bin/taler-deployment
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2022-04-14 23:58:50 +0200
committerChristian Grothoff <christian@grothoff.org>2022-04-14 23:58:50 +0200
commitb425532268ffacb23eb95ee78a875dafbe603265 (patch)
treec59097240a9bab892e7385510f9b5c0a03b6cf1f /bin/taler-deployment
parent59bf9fc2047cd41592758f28ee72dfef214a447b (diff)
downloaddeployment-b425532268ffacb23eb95ee78a875dafbe603265.tar.gz
deployment-b425532268ffacb23eb95ee78a875dafbe603265.tar.bz2
deployment-b425532268ffacb23eb95ee78a875dafbe603265.zip
remove Anastasis from buildbot deployment
Diffstat (limited to 'bin/taler-deployment')
-rwxr-xr-xbin/taler-deployment35
1 files changed, 0 insertions, 35 deletions
diff --git a/bin/taler-deployment b/bin/taler-deployment
index 87899dd..6b098a5 100755
--- a/bin/taler-deployment
+++ b/bin/taler-deployment
@@ -255,23 +255,6 @@ def build_sync(r, p):
(p / "taler-buildstamp").touch()
-def build_anastasis(r, p):
- update_checkout(r, p)
- subprocess.run(["./bootstrap"], check=True)
- pfx = Path.home() / "local"
- default_configure(
- "CFLAGS=-ggdb -O0",
- "--enable-logging=verbose",
- f"--with-microhttpd={pfx}",
- f"--with-exchange={pfx}",
- f"--with-merchant={pfx}",
- f"--with-gnunet={pfx}",
- "--disable-doc",
- )
- subprocess.run(["make", "install"], check=True)
- (p / "taler-buildstamp").touch()
-
-
def build_bank(r, p):
update_checkout(r, p)
subprocess.run(["pip3", "install", "poetry"], check=True)
@@ -348,12 +331,6 @@ def get_repos(envname):
["exchange", "merchant","gnunet","libmicrohttpd"],
build_sync,
),
- Repo(
- "anastasis",
- "git://git.taler.net/anastasis",
- ["exchange", "merchant","libmicrohttpd","gnunet"],
- build_anastasis,
- ),
]
if envname in ("int", "coverage", "integrationtest",):
return [
@@ -404,12 +381,6 @@ def get_repos(envname):
["exchange", "merchant", "gnunet", "libmicrohttpd"],
build_sync,
),
- Repo(
- "anastasis",
- "git://git.taler.net/anastasis",
- ["exchange", "merchant", "gnunet", "libmicrohttpd"],
- build_anastasis,
- ),
]
# Note: these are currently not in use!
@@ -503,12 +474,6 @@ def get_repos(envname):
build_sync,
),
Repo(
- "anastasis",
- "git://git.taler.net/anastasis",
- ["gnunet", "libmicrohttpd", "exchange", "merchant"],
- build_sync,
- ),
- Repo(
"taler-merchant-demos",
"git://git.taler.net/taler-merchant-demos",
[],