taler-deployment

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

commit 8c819941a72cfea40d2b5ca82085f135559e6e0b
parent fbf55ba8e13f9778ebb23de06fc2b52396982640
Author: Devan Carpenter <devan@taler.net>
Date:   Wed, 22 Nov 2023 22:46:01 -0500

buildbot: fix some paths that were missed

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

diff --git a/buildbot/master.cfg b/buildbot/master.cfg @@ -189,7 +189,7 @@ def container_add_step(HALT_ON_FAILURE, WORK_DIR, stepName, jobCmd="/workdir/contrib/ci/ci.sh", - containerFile="ci/Containerfile"): + containerFile="contrib/ci/Containerfile"): print(f"HALT_ON_FAILURE: {HALT_ON_FAILURE}, WARN_ON_FAILURE: {WARN_ON_FAILURE}, CONTAINER_BUILD: {CONTAINER_BUILD}, CONTAINER_NAME: {CONTAINER_NAME}") if not CONTAINER_BUILD: return steps.ShellSequence( @@ -1116,7 +1116,7 @@ class GenerateStagesCommand(buildstep.ShellMixin, steps.BuildStep): container_factory, CONTAINER_WORKDIR, stage, - f"ci/jobs/{stage}/job.sh") + f"contrib/ci/jobs/{stage}/job.sh") for stage in jobDirs ])