[PATCH] D60635: [zorg] Add LLVM lab buildslaves for Windows/Ubuntu builders.
Vlad Vereschaka via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Fri Apr 12 15:29:53 PDT 2019
vvereschaka updated this revision to Diff 194971.
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D60635/new/
https://reviews.llvm.org/D60635
Files:
buildbot/osuosl/master/config/builders.py
buildbot/osuosl/master/config/slaves.py
Index: buildbot/osuosl/master/config/slaves.py
===================================================================
--- buildbot/osuosl/master/config/slaves.py
+++ buildbot/osuosl/master/config/slaves.py
@@ -114,7 +114,7 @@
create_slave("ppc64le-clang-multistage-test", properties={'jobs': 8}, max_builds=1),
create_slave("ppc64le-sanitizer", properties={'jobs': 4}, max_builds=1),
create_slave("ppc64le-lld-multistage-test", properties={'jobs': 40}, max_builds=1),
-
+
# POWER 8 PowerPC little endian (powerpc64le) with NVIDIA GPUs
create_slave("ppc64le-nvidia-K40", properties={'jobs': 4}, max_builds=1),
# POWER 8 PowerPC little endian (powerpc64le) with NVIDIA Pascal GPUs
@@ -259,6 +259,13 @@
# Debian x86_64 Buster Xeon(R) Gold 6154 CPU @ 3.00GHz, 192GB RAM
create_slave("lldb-x86_64-debian", properties={'jobs': 72}, max_builds=1),
+ # Windows Server 2012R2 x86_64 Intel(R) Xeon(R) Gold CPU @ 2.1GHz, 128GB RAM
+ create_slave("as-builder-1", properties={'jobs': 64}, max_builds=1),
+ create_slave("as-builder-2", properties={'jobs': 64}, max_builds=1),
+ create_slave("as-builder-3", properties={'jobs': 64}, max_builds=1),
+ # Ubuntu 18.04.2 LTS x86_64 Intel(R) Xeon(R) Gold CPU @ 2.1GHz, 128GB RAM
+ create_slave("as-builder-4", properties={'jobs': 64}, max_builds=1),
+
# Ubuntu 14.04 x86_64, Intel(R) Xeon(R) CPU @ 2.30GHz
#create_slave("llgo-builder", properties={'jobs': 2}, max_builds=1),
Index: buildbot/osuosl/master/config/builders.py
===================================================================
--- buildbot/osuosl/master/config/builders.py
+++ buildbot/osuosl/master/config/builders.py
@@ -1047,6 +1047,15 @@
depends_on_projects=['llvm', 'clang', 'lld']),
'category' : 'lld'},
+ {'name' : "lld-x86_64-ubuntu-fast",
+ 'slavenames' : ["as-builder-4"],
+ 'builddir' : "lld-x86_64-ubuntu-fast",
+ 'factory': UnifiedTreeBuilder.getCmakeWithNinjaBuildFactory(
+ clean = True,
+ extra_configure_args = ["-DLLVM_ENABLE_WERROR=OFF"],
+ depends_on_projects=['llvm', 'lld']),
+ 'category' : 'lld'},
+
]
# llgo builders.
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D60635.194971.patch
Type: text/x-patch
Size: 2387 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20190412/aa455be5/attachment.bin>
More information about the llvm-commits
mailing list