[zorg] r230399 - Add VS2013 Clang builder and slave

Reid Kleckner reid at kleckner.net
Tue Feb 24 15:39:22 PST 2015


Author: rnk
Date: Tue Feb 24 17:39:21 2015
New Revision: 230399

URL: http://llvm.org/viewvc/llvm-project?rev=230399&view=rev
Log:
Add VS2013 Clang builder and slave

Summary:
This is a starting point. I have no idea which direction I should continue to
make this work and am looking for advice.  Eventually this bot should be able
to self-host using clang-cl.

Reviewers: rfoos, zturner, gkistanova

Reviewed By: gkistanova

Subscribers: llvm-commits

Differential Revision: http://reviews.llvm.org/D7848

Modified:
    zorg/trunk/buildbot/osuosl/master/config/builders.py
    zorg/trunk/buildbot/osuosl/master/config/slaves.py

Modified: zorg/trunk/buildbot/osuosl/master/config/builders.py
URL: http://llvm.org/viewvc/llvm-project/zorg/trunk/buildbot/osuosl/master/config/builders.py?rev=230399&r1=230398&r2=230399&view=diff
==============================================================================
--- zorg/trunk/buildbot/osuosl/master/config/builders.py (original)
+++ zorg/trunk/buildbot/osuosl/master/config/builders.py Tue Feb 24 17:39:21 2015
@@ -318,6 +318,19 @@ def _get_clang_builders():
                                                        stage1_config='Release+Asserts',
                                                        stage2_config='Release+Asserts')},
 
+        # This will ultimately be a self-host bot, even though the config does
+        # not reflect that today.
+        {'name': 'clang-x86-win2008-selfhost',
+         'slavenames': ['windows-gcebot1'],
+         'builddir': 'clang-x86-win2008-selfhost',
+         'factory' : ClangBuilder.getClangCMakeBuildFactory(
+                        triple='i686-pc-windows-msvc',
+                        clean=False,
+                        checkout_compiler_rt=False,
+                        testStage1=True,
+                        stage1_config='Release',
+                        extra_cmake_args=["-DLLVM_ENABLE_ASSERTIONS=ON"])},
+
         {'name' : "clang-ppc64-elf-linux",
          'slavenames' :["chinook-clangslave1"],
          'builddir' :"clang-ppc64-1",

Modified: zorg/trunk/buildbot/osuosl/master/config/slaves.py
URL: http://llvm.org/viewvc/llvm-project/zorg/trunk/buildbot/osuosl/master/config/slaves.py?rev=230399&r1=230398&r2=230399&view=diff
==============================================================================
--- zorg/trunk/buildbot/osuosl/master/config/slaves.py (original)
+++ zorg/trunk/buildbot/osuosl/master/config/slaves.py Tue Feb 24 17:39:21 2015
@@ -168,6 +168,8 @@ def get_build_slaves():
         create_slave("zturner-win2008", properties={'jobs': 4}, max_builds=1),
         # Windows Server 2008 R2, Quad 2.6GHz Intel Xeon(R) 8GB RAM
         create_slave("sanitizer-windows", properties={'jobs': 4}, max_builds=1),
+        # Windows Server 2008 R2, Quad 2.6GHz Intel Xeon(R) 8GB RAM
+        create_slave("windows-gcebot1", properties={'jobs': 8}, max_builds=1),
 
         # Ubuntu x86-64, 51GiB System memory Intel(R) Xeon(R) CPU @ 2.60GHz
         create_slave("lldb-build1-ubuntu-1404", properties={'jobs': 16, 'loadaverage':





More information about the llvm-commits mailing list