buildbot: allow configuring ulpath_unique

This commit is contained in:
Joshua Root
2025-03-04 05:11:55 +11:00
parent a58d5aa896
commit 827ee0dff8
+4 -1
View File
@@ -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):