Skip to content

Commit ff329ad

Browse files
authored
Add OpenMP builder for s390x (#67)
1 parent 20635ba commit ff329ad

File tree

2 files changed

+13
-1
lines changed

2 files changed

+13
-1
lines changed

buildbot/osuosl/master/config/builders.py

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1688,6 +1688,17 @@
16881688
'CC': 'clang', 'CXX': 'clang++',
16891689
})},
16901690

1691+
{'name' : "openmp-s390x-linux",
1692+
'tags' : ["openmp"],
1693+
'workernames' : ["systemz-1"],
1694+
'builddir': "openmp-s390x-linux",
1695+
'factory' : OpenMPBuilder.getOpenMPCMakeBuildFactory(
1696+
jobs=4,
1697+
extraCmakeArgs=[
1698+
'-DLLVM_CCACHE_BUILD=ON',
1699+
"-DLLVM_ENABLE_ASSERTIONS=ON",
1700+
])},
1701+
16911702
{'name' : "openmp-offload-cuda-project",
16921703
'tags' : ["openmp"],
16931704
'workernames' : ["minipc-1050ti-linux"],

buildbot/osuosl/master/config/status.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,8 @@ def getReporters():
9191
subject = "Build %(builder)s Failure",
9292
mode = "failing",
9393
builders = ["clang-s390x-linux", "clang-s390x-linux-multistage",
94-
"clang-s390x-linux-lnt", "mlir-s390x-linux"]),
94+
"clang-s390x-linux-lnt", "mlir-s390x-linux",
95+
"openmp-s390x-linux"]),
9596
reporters.MailNotifier(
9697
fromaddr = "llvm.buildmaster@lab.llvm.org",
9798
sendToInterestedUsers = False,

0 commit comments

Comments
 (0)