taler-deployment

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

commit b28fe4af00bbde47505082c745bfcdaff1e6bbae
parent 05a3437f893f16983e7a22239d8bf79b2ce12671
Author: Iván Ávalos <avalos@disroot.org>
Date:   Fri,  7 Feb 2025 15:39:14 +0100

replace REPO_NAME with CONTAINER_NAME

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

diff --git a/buildbot/master.cfg b/buildbot/master.cfg @@ -210,7 +210,6 @@ def container_add_step(HALT_ON_FAILURE, CONTAINER_NAME, factory, WORK_DIR, - repoName, stepName, CONTAINER_ARCH="amd64", jobCmd="/workdir/contrib/ci/ci.sh", @@ -234,7 +233,7 @@ def container_add_step(HALT_ON_FAILURE, "--workdir", "/workdir"] # Inputs directory - inputs_path = f"/home/container-worker/container_inputs/{repoName}" + inputs_path = f"/home/container-worker/container_inputs/{CONTAINER_NAME}" if os.path.isdir(inputs_path): runCommand += ["--volume", f"{inputs_path}:/inputs:ro"] @@ -1116,7 +1115,6 @@ 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")