[zorg] r201735 - Update validated builder to make a copy of validated compilers, so when old compilers are garbage collected the build does not fail.
Chris Matthews
cmatthews5 at apple.com
Wed Feb 19 15:20:26 PST 2014
Author: cmatthews
Date: Wed Feb 19 17:20:26 2014
New Revision: 201735
URL: http://llvm.org/viewvc/llvm-project?rev=201735&view=rev
Log:
Update validated builder to make a copy of validated compilers, so when old compilers are garbage collected the build does not fail.
Modified:
zorg/trunk/zorg/buildbot/util/phasedbuilderutils.py
Modified: zorg/trunk/zorg/buildbot/util/phasedbuilderutils.py
URL: http://llvm.org/viewvc/llvm-project/zorg/trunk/zorg/buildbot/util/phasedbuilderutils.py?rev=201735&r1=201734&r2=201735&view=diff
==============================================================================
--- zorg/trunk/zorg/buildbot/util/phasedbuilderutils.py (original)
+++ zorg/trunk/zorg/buildbot/util/phasedbuilderutils.py Wed Feb 19 17:20:26 2014
@@ -296,7 +296,7 @@ def PublishGoodBuild(f=None, validated_b
f.addStep(MasterShellCommand(
name='Publish.Latest.' + buildname,
haltOnFailure=True,
- command=['ln', '-sfv',
+ command=['cp', '-v',
WithProperties(link_str,
get_phase_id=determine_phase_id),
os.path.join(artifacts_dir, validated_build_dir,
@@ -317,7 +317,7 @@ def PublishGoodBuild(f=None, validated_b
f.addStep(MasterShellCommand(
name='Publish.'+ buildname, haltOnFailure = True,
- command = ['ln', '-sfv',
+ command = ['cp', '-v',
WithProperties(link_str,
get_phase_id=determine_phase_id),
WithProperties(artifacts_str,
More information about the llvm-commits
mailing list