[zorg] r368612 - Remove builder clang-with-thin-lto-windows

Bob Haarman via llvm-commits llvm-commits at lists.llvm.org
Mon Aug 12 12:54:43 PDT 2019


Author: inglorion
Date: Mon Aug 12 12:54:43 2019
New Revision: 368612

URL: http://llvm.org/viewvc/llvm-project?rev=368612&view=rev
Log:
Remove builder clang-with-thin-lto-windows

Removed:
    zorg/trunk/zorg/buildbot/builders/annotated/clang-with-thin-lto-windows.py
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=368612&r1=368611&r2=368612&view=diff
==============================================================================
--- zorg/trunk/buildbot/osuosl/master/config/builders.py (original)
+++ zorg/trunk/buildbot/osuosl/master/config/builders.py Mon Aug 12 12:54:43 2019
@@ -906,14 +906,6 @@ def _get_lld_builders():
          'factory': ClangLTOBuilder.getClangWithLTOBuildFactory(jobs=72, lto='thin'),
          'category'   : 'lld'},
 
-        {'name': "clang-with-thin-lto-windows",
-         'slavenames' :["windows-lld-thinlto-1"],
-         'builddir': "clang-with-thin-lto-windows",
-         'factory': AnnotatedBuilder.getAnnotatedBuildFactory(
-             script="clang-with-thin-lto-windows.py",
-             depends_on_projects=['llvm', 'clang', 'lld']),
-         'category'   : 'lld'},
-
         {'name' : "clang-lld-x86_64-2stage",
          'slavenames' : ["am1i-slv1", "am1i-slv3", "am1i-slv4"],
          'builddir' : "clang-lld-x86_64-2stage",

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=368612&r1=368611&r2=368612&view=diff
==============================================================================
--- zorg/trunk/buildbot/osuosl/master/config/slaves.py (original)
+++ zorg/trunk/buildbot/osuosl/master/config/slaves.py Mon Aug 12 12:54:43 2019
@@ -148,8 +148,6 @@ def get_build_slaves():
         create_slave("windows-gcebot1", properties={'jobs': 8}, max_builds=1),
         # Windows Server 2012 x86_64 32-core GCE instance
         create_slave("windows-gcebot2", properties={'jobs': 32}, max_builds=1),
-        # Windows Server 2016 x86_64 16-core GCE instance
-        create_slave("windows-lld-thinlto-1", max_builds=1),
 
         # Ubuntu 14.04 x86_64-scei-ps4, 2 x Intel(R) Xeon(R) CPU E5-2699 v3 @ 2.30GHz
         create_slave("ps4-buildslave1"),

Removed: zorg/trunk/zorg/buildbot/builders/annotated/clang-with-thin-lto-windows.py
URL: http://llvm.org/viewvc/llvm-project/zorg/trunk/zorg/buildbot/builders/annotated/clang-with-thin-lto-windows.py?rev=368611&view=auto
==============================================================================
--- zorg/trunk/zorg/buildbot/builders/annotated/clang-with-thin-lto-windows.py (original)
+++ zorg/trunk/zorg/buildbot/builders/annotated/clang-with-thin-lto-windows.py (removed)
@@ -1,44 +0,0 @@
-#!/usr/bin/python
-
-import os
-import sys
-import annotated_builder
-
-
-def main(argv):
-    ap = annotated_builder.get_argument_parser()
-    args = ap.parse_args(argv[1:])
-
-    stages = 2
-    stage1_extra_cmake_args = [
-        '-DCMAKE_BUILD_TYPE=Release',
-        '-DLLVM_TARGETS_TO_BUILD=X86',
-    ]
-    extra_cmake_args = stage1_extra_cmake_args + [
-        '-DLLVM_ENABLE_LTO=thin',
-        '-DLLVM_USE_LINKER=lld',
-    ]
-    check_targets = ['check-llvm', 'check-clang', 'check-lld']
-    check_stages = [True] * stages
-    check_stages[0] = False
-    if os.name == 'nt':
-        compiler = 'clang-cl'
-        linker = 'lld-link'
-    else:
-        compiler = 'clang'
-        linker = 'ld.lld'
-
-    builder = annotated_builder.AnnotatedBuilder()
-    builder.run_steps(stages=stages,
-                      extra_cmake_args=extra_cmake_args,
-                      stage1_extra_cmake_args=stage1_extra_cmake_args,
-                      check_targets=check_targets,
-                      check_stages=check_stages,
-                      compiler=compiler,
-                      linker=linker,
-                      jobs=args.jobs)
-
-
-if __name__ == '__main__':
-    sys.path.append(os.path.dirname(__file__))
-    sys.exit(main(sys.argv))




More information about the llvm-commits mailing list