commit 87587c272a7062009e7ff41da2ead97f974e5691
parent 86f2900af629e336db023f767672607046039302
Author: Christian Grothoff <christian@grothoff.org>
Date: Sun, 23 Feb 2020 17:57:15 +0100
distinguish between two auditor setups, as currency is different
Diffstat:
1 file changed, 6 insertions(+), 3 deletions(-)
diff --git a/bin/taler-deployment b/bin/taler-deployment
@@ -76,6 +76,8 @@ currmap = {
"int": "INTKUDOS",
"euro": "EUR",
"chf": "CHF",
+ "auditor-reporter-test": "TESTKUDOS"
+ "auditor-reporter-demo": "KUDOS"
}
@@ -332,7 +334,7 @@ def get_repos(envname):
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"):
+ if envname in ("demo", "int", "test", "auditor-reporter-test", "auditor-reporter-demo"):
return [
Repo(
"libmicrohttpd",
@@ -434,7 +436,8 @@ allowed_envs = (
"test",
"int",
"demo",
- "auditor-reporter",
+ "auditor-reporter-test",
+ "auditor-reporter-demo",
"docs-builder",
"euro",
"chf",
@@ -563,7 +566,7 @@ def bootstrap() -> None:
if envname == "test":
create_bb_worker("buildbot-worker-taler.service", "bb-worker", "test-worker", "test-pass")
- elif envname == "auditor-reporter":
+ elif envname in ("auditor-reporter-test", "auditor-reporter-demo"):
create_bb_worker("buildbot-worker-auditor.service", "auditor-worker", "auditor-pass")
elif envname == "demo-checker":
create_bb_worker("buildbot-worker-taler-healthcheck.service", "bb-worker", "demo-worker", "demo-pass")