From 827ee0dff8ae01be5fcd032dfe06eb4b027cfbbd Mon Sep 17 00:00:00 2001 From: Joshua Root Date: Tue, 4 Mar 2025 05:11:55 +1100 Subject: [PATCH] buildbot: allow configuring ulpath_unique --- buildbot/master.cfg | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/buildbot/master.cfg b/buildbot/master.cfg index bcca5e4..824062f 100644 --- a/buildbot/master.cfg +++ b/buildbot/master.cfg @@ -473,7 +473,10 @@ if 'ulpath' in config: ulpath = config['ulpath'] else: ulpath = 'archive_staging' -ulpath_unique = ulpath+'-%(buildername)s' +if 'ulpath_unique' in config: + ulpath_unique = config['ulpath_unique'] +else: + ulpath_unique = ulpath+'-%(buildername)s' @util.renderer def make_build_url(props):