taler-deployment

Deployment scripts and configuration files
Log | Files | Refs | README

commit b4b31ccb4eaf7b8279035c6d26f75dd99912c52e
parent 551171fd12618ef8332108ad39a3e3e6906442f0
Author: Devan Carpenter <devan@taler.net>
Date:   Sun,  9 Feb 2025 17:22:41 +0100

Revert "replace REPO_NAME with CONTAINER_NAME"

This reverts commit b28fe4af00bbde47505082c745bfcdaff1e6bbae.

Diffstat:
Mbuildbot/master.cfg | 4+++-
1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/buildbot/master.cfg b/buildbot/master.cfg @@ -210,6 +210,7 @@ def container_add_step(HALT_ON_FAILURE, CONTAINER_NAME, factory, WORK_DIR, + repoName, stepName, CONTAINER_ARCH="amd64", jobCmd="/workdir/contrib/ci/ci.sh", @@ -233,7 +234,7 @@ def container_add_step(HALT_ON_FAILURE, "--workdir", "/workdir"] # Inputs directory - inputs_path = f"/home/container-worker/container_inputs/{CONTAINER_NAME}" + inputs_path = f"/home/container-worker/container_inputs/{repoName}" if os.path.isdir(inputs_path): print(f"adding {inputs_path}") runCommand += ["--volume", f"{inputs_path}:/inputs:ro"] @@ -1116,6 +1117,7 @@ class GenerateStagesCommand(buildstep.ShellMixin, steps.BuildStep): self.configDict[stage]["CONTAINER_NAME"], container_factory, CONTAINER_WORKDIR, + self.REPO_NAME, stage, self.configDict[stage]["CONTAINER_ARCH"], f"contrib/ci/jobs/{stage}/job.sh")