[PATCH] D53099: [buildbot] Add a new windows buildbot for LLDB
Stella Stamenova via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Wed Oct 10 11:37:53 PDT 2018
This revision was automatically updated to reflect the committed changes.
Closed by commit rL344170: [buildbot] Add a new windows buildbot for LLDB (authored by stella.stamenova, committed by ).
Changed prior to commit:
https://reviews.llvm.org/D53099?vs=169057&id=169062#toc
Repository:
rL LLVM
https://reviews.llvm.org/D53099
Files:
zorg/trunk/buildbot/osuosl/master/config/builders.py
zorg/trunk/buildbot/osuosl/master/config/slaves.py
zorg/trunk/buildbot/osuosl/master/config/status.py
Index: zorg/trunk/buildbot/osuosl/master/config/slaves.py
===================================================================
--- zorg/trunk/buildbot/osuosl/master/config/slaves.py
+++ zorg/trunk/buildbot/osuosl/master/config/slaves.py
@@ -99,6 +99,9 @@
# Windows 7 Intel(R) Xeon(R) CPU E5-2680 (2.80GHz), 16GB of RAM
create_slave("windows7-buildbot", properties={'jobs': 2}, max_builds=1),
+ # Windows Server 2016 Intel Xeon(R) Quad 2.30 GHz, 56GB of RAM
+ create_slave("win-py3-buildbot", properties={'jobs' : 64}, max_builds=1),
+
# POWER7 PowerPC big endian (powerpc64)
create_slave("ppc64be-clang-test", properties={'jobs': 16}, max_builds=1),
create_slave("ppc64be-clang-lnt-test", properties={'jobs': 16}, max_builds=1),
Index: zorg/trunk/buildbot/osuosl/master/config/builders.py
===================================================================
--- zorg/trunk/buildbot/osuosl/master/config/builders.py
+++ zorg/trunk/buildbot/osuosl/master/config/builders.py
@@ -986,7 +986,18 @@
downloadBinary=False,
runTest=True,
extra_cmake_args=["-DLLVM_ENABLE_ASSERTIONS=True",
- "-DLLVM_USE_LINKER=gold"])}
+ "-DLLVM_USE_LINKER=gold"])},
+ {'name': "lldb-x64-windows-ninja",
+ 'slavenames': ["win-py3-buildbot"],
+ 'builddir': "lldb-x64-windows-ninja",
+ 'category' : 'lldb',
+ 'factory': LLDBBuilder.getLLDBWindowsCMakeBuildFactory(
+ clean=True,
+ python_source_dir="C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\Python36_64",
+ vs='%VS150COMNTOOLS%',
+ target_arch='x64',
+ test=True,
+ extra_cmake_args=['-DLLVM_ENABLE_ASSERTIONS=OFF'])}
]
# LLD builders.
Index: zorg/trunk/buildbot/osuosl/master/config/status.py
===================================================================
--- zorg/trunk/buildbot/osuosl/master/config/status.py
+++ zorg/trunk/buildbot/osuosl/master/config/status.py
@@ -255,4 +255,13 @@
builders = ["clang-openbsd-amd64"],
addLogs=False,
num_lines = 15),
+ InformativeMailNotifier(
+ fromaddr = "llvm.buildmaster at lab.llvm.org",
+ sendToInterestedUsers = False,
+ extraRecipients = ["stilis at microsoft.com"],
+ subject="Build %(builder)s Failure",
+ mode = "failing",
+ builders = ["lldb-x64-windows-ninja"],
+ addLogs=False,
+ num_lines = 15),
]
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D53099.169062.patch
Type: text/x-patch
Size: 2693 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20181010/6ad9a864/attachment.bin>
More information about the llvm-commits
mailing list