taler-deployment

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

commit 98ae086f431bb27f9d128bb6c5484bbda94ef86f
parent 159a9eaf9b1e162c3e7490ced2ef9563d45df4e8
Author: Devan Carpenter <devan@taler.net>
Date:   Wed,  9 Oct 2024 15:01:49 +0100

buildbot: mount dir for long-lived artifacts

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

diff --git a/buildbot/master.cfg b/buildbot/master.cfg @@ -206,7 +206,8 @@ def container_add_step(HALT_ON_FAILURE, "--env", util.Interpolate("CI_GIT_BRANCH=%(src::branch)s"), "--env", util.Interpolate("CI_PROJECT_NAME=%(src::project)s"), "--volume", f"{WORK_DIR}:/workdir", - "--volume", "/home/container-worker/container_artifacts:/artifacts", + "--volume", "/home/container-worker/ephemeral_ci_artifacts:/artifacts", + "--volume", "/home/container-worker/persistent_ci_artifacts:/persistent_artifacts", "--volume", "/home/container-worker/mounted_files/ci_container_id_ed25519:/root/.ssh/id_ed25519:ro", "--volume", "/home/container-worker/mounted_files/container_known_hosts:/root/.ssh/known_hosts:ro", "--workdir", "/workdir"]