[PATCH] D48741: [Zorg] Add OpenBSD buildbot
David CARLIER via Phabricator via llvm-commits
llvm-commits at lists.llvm.org
Thu Jul 19 12:32:38 PDT 2018
This revision was automatically updated to reflect the committed changes.
Closed by commit rL337487: [Zorg] Add OpenBSD buildbot (authored by devnexen, committed by ).
Changed prior to commit:
https://reviews.llvm.org/D48741?vs=153387&id=156337#toc
Repository:
rL LLVM
https://reviews.llvm.org/D48741
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
@@ -260,8 +260,8 @@
# Debian 86_64, 2 x 6-core Opteron 2.6 GHz
#create_slave("osu8", properties={'jobs' : 6}, max_builds=2),
- # OpenBSD
- #create_slave("openbsd-buildslave", properties={'jobs': 2}, max_builds=1),
+ # OpenBSD 6.3 amd64
+ create_slave("clang-openbsd63-amd64", properties={'jobs': 2}, 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: zorg/trunk/buildbot/osuosl/master/config/builders.py
===================================================================
--- zorg/trunk/buildbot/osuosl/master/config/builders.py
+++ zorg/trunk/buildbot/osuosl/master/config/builders.py
@@ -813,6 +813,17 @@
#env={'BUCKET': ''}
),
'category': 'clang'},
+
+ # OpenBSD
+ {'name' : "clang-openbsd63-amd64",
+ 'slavenames' : ["openbsd63-amd64"],
+ 'builddir' : "clang-openbsd63-amd64",
+ 'factory': ClangBuilder.getClangCMakeBuildFactory(
+ checkout_lld=False,
+ clean=True,
+ extra_cmake_args=['-DLLVM_ENABLE_ASSERTIONS=ON',
+ '-DCMAKE_BUILD_TYPE:STRING=Release'])},
+
]
# Polly 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
@@ -246,4 +246,13 @@
builders = ["llvm-riscv-linux"],
addLogs=False,
num_lines = 15),
+ InformativeMailNotifier(
+ fromaddr = "llvm.buildmaster at lab.llvm.org",
+ sendToInterestedUsers = False,
+ extraRecipients = ["devnexen at gmail.com"],
+ subject="Build %(builder)s Failure",
+ mode = "failing",
+ builders = ["clang-openbsd63-amd64"],
+ addLogs=False,
+ num_lines = 15),
]
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D48741.156337.patch
Type: text/x-patch
Size: 2336 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20180719/0f2762af/attachment.bin>
More information about the llvm-commits
mailing list