[zorg] r188694 - [llvmlab] Make sure that the artifacts result location has %(get_phase_id)s interpolated.
Michael Gottesman
mgottesman at apple.com
Mon Aug 19 12:31:08 PDT 2013
Author: mgottesman
Date: Mon Aug 19 14:31:07 2013
New Revision: 188694
URL: http://llvm.org/viewvc/llvm-project?rev=188694&view=rev
Log:
[llvmlab] Make sure that the artifacts result location has %(get_phase_id)s interpolated.
Modified:
zorg/trunk/zorg/buildbot/PhasedBuilderUtils.py
Modified: zorg/trunk/zorg/buildbot/PhasedBuilderUtils.py
URL: http://llvm.org/viewvc/llvm-project/zorg/trunk/zorg/buildbot/PhasedBuilderUtils.py?rev=188694&r1=188693&r2=188694&view=diff
==============================================================================
--- zorg/trunk/zorg/buildbot/PhasedBuilderUtils.py (original)
+++ zorg/trunk/zorg/buildbot/PhasedBuilderUtils.py Mon Aug 19 14:31:07 2013
@@ -293,7 +293,8 @@ def PublishGoodBuild():
command = ['ln', '-sfv',
WithProperties(link_str,
get_phase_id=determine_phase_id),
- artifacts_str],
+ WithProperties(artifacts_str,
+ get_phase_id=determine_phase_id)],
description = ['publish', buildname]))
return f
More information about the llvm-commits
mailing list