[zorg] r178772 - Move the incremental phase 1 builder into production mode out of experimental mode.

Michael Gottesman mgottesman at apple.com
Thu Apr 4 11:09:23 PDT 2013


Author: mgottesman
Date: Thu Apr  4 13:09:23 2013
New Revision: 178772

URL: http://llvm.org/viewvc/llvm-project?rev=178772&view=rev
Log:
Move the incremental phase 1 builder into production mode out of experimental mode.

I am taking this step by step. In a bit I will get rid of the plain bootstrap
builder and change all the downstream builders to use the artifacts from this
builder.

Modified:
    zorg/trunk/buildbot/llvmlab/master/config/phase_config.py

Modified: zorg/trunk/buildbot/llvmlab/master/config/phase_config.py
URL: http://llvm.org/viewvc/llvm-project/zorg/trunk/buildbot/llvmlab/master/config/phase_config.py?rev=178772&r1=178771&r2=178772&view=diff
==============================================================================
--- zorg/trunk/buildbot/llvmlab/master/config/phase_config.py (original)
+++ zorg/trunk/buildbot/llvmlab/master/config/phase_config.py Thu Apr  4 13:09:23 2013
@@ -27,7 +27,7 @@ phase1_slaves=['xserve5']
 phase1_builders = []
 
 phase1_builders.append(build('clang-x86_64-darwin11-nobootstrap-RA', phase1_slaves))
-phase1_builders.append(experimental('clang-x86_64-darwin11-nobootstrap-RAincremental', ['xserve4']))
+phase1_builders.append(build('clang-x86_64-darwin11-nobootstrap-RAincremental', ['xserve4']))
 
 phases.append(
     { 'number' : 1,





More information about the llvm-commits mailing list