gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[taler-deployment] branch master updated: buildbot: use full repo string


From: gnunet
Subject: [taler-deployment] branch master updated: buildbot: use full repo string not substring
Date: Mon, 12 Jun 2023 21:21:11 +0200

This is an automated email from the git hooks/post-receive script.

devan-carpenter pushed a commit to branch master
in repository deployment.

The following commit(s) were added to refs/heads/master by this push:
     new 1f7d461  buildbot: use full repo string not substring
1f7d461 is described below

commit 1f7d46151dc81a6da2446b6a32c4fadbc9f83a74
Author: Devan Carpenter <devan@taler.net>
AuthorDate: Mon Jun 12 15:20:53 2023 -0400

    buildbot: use full repo string not substring
---
 buildbot/master.cfg | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/buildbot/master.cfg b/buildbot/master.cfg
index a3118a7..7b1e2dd 100644
--- a/buildbot/master.cfg
+++ b/buildbot/master.cfg
@@ -1195,8 +1195,8 @@ container_repos = ["wallet-core"]
 for reponame in container_repos:
     ##
     # Factory-wide variables
-    REPO_URL = "https://git.taler.net/"; + reponame[0] + ".git"
-    CONTAINER_WORKDIR = f"/home/container-worker/workspace/{reponame[0]}"
+    REPO_URL = "https://git.taler.net/"; + reponame + ".git"
+    CONTAINER_WORKDIR = f"/home/container-worker/workspace/{reponame}"
 
     # Create a factory
     container_factory = util.BuildFactory()
@@ -1225,10 +1225,10 @@ for reponame in container_repos:
     ))
 
     # Run container step with default commands
-    container_run_step(container_factory, CONTAINER_WORKDIR, reponame[0])
+    container_run_step(container_factory, CONTAINER_WORKDIR, reponame)
 
     BUILDERS.append(util.BuilderConfig(
-        name=f"{reponame[0]}-builder",
+        name=f"{reponame}-builder",
         workernames=["container-worker"],
         factory=container_factory
     ))
@@ -1237,10 +1237,10 @@ for reponame in container_repos:
         name="container-scheduler",
         change_filter=util.ChangeFilter(
             branch="dev/devan-carpenter/container-ci",
-            project_re=f"({reponame[0]})"
+            project_re=f"({reponame})"
         ),
         treeStableTimer=None,
-        builderNames=[f"{reponame[0]}-builder"]
+        builderNames=[f"{reponame}-builder"]
     ))
 
 ## TODO: TBD

-- 
To stop receiving notification emails like this one, please contact
gnunet@gnunet.org.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]