commit ed8fc617d60cdea3a324535de773899100212771
parent d6536c0a5ebe00b82a6ac0deb95b7a57703d859f
Author: Christian Grothoff <christian@grothoff.org>
Date: Tue, 4 Aug 2026 10:56:34 +0200
add Anastasis to CI list
Diffstat:
1 file changed, 5 insertions(+), 1 deletion(-)
diff --git a/buildbot/master.cfg b/buildbot/master.cfg
@@ -1056,6 +1056,7 @@ class GenerateStagesCommand(buildstep.ShellMixin, steps.BuildStep):
# List of repos to add to container factory.
container_repos = ["git.gnunet.org/gnunet",
+ "git.taler.net/anastasis",
"git.taler.net/challenger",
"git.taler.net/donau",
"git.taler.net/exchange",
@@ -1135,7 +1136,10 @@ for repo in container_repos:
name=f"{REPO_NAME}-container-scheduler",
change_filter=util.ChangeFilter(
branch="master",
- project_re=f"({REPO_NAME})"
+ # Anchored: ChangeFilter matches the regex against the start of
+ # the project name only, so an unanchored "(anastasis)" would
+ # also fire for pushes to 'anastasis-www' and 'anastasis-gtk'.
+ project_re=f"^({REPO_NAME})$"
),
treeStableTimer=30,
builderNames=[f"{REPO_NAME}-builder"]