Skip to content

Commit 7ce8260

Browse files
authored
Add fast ps5 linux builder, update my build failure notifications and update some descriptions. (#397)
This change adds a new fast linux builder that targets the PS5 (our current fast builder targets PS4), updates the list of bots I am notified about for failures and updates some worker descriptions.
1 parent 293d247 commit 7ce8260

File tree

3 files changed

+27
-1
lines changed

3 files changed

+27
-1
lines changed

buildbot/osuosl/master/config/builders.py

+22
Original file line numberDiff line numberDiff line change
@@ -124,6 +124,28 @@
124124
"-DLLVM_TARGETS_TO_BUILD=X86",
125125
"-DLLVM_USE_LINKER=gold"])},
126126

127+
{'name': "llvm-clang-x86_64-sie-ps5-fast",
128+
'tags' : ["clang", "llvm", "clang-tools-extra", "lld", "cross-project-tests"],
129+
'collapseRequests': False,
130+
'workernames': ["sie-linux-worker4"],
131+
'builddir': "llvm-ps5-fast",
132+
'factory': UnifiedTreeBuilder.getCmakeWithNinjaBuildFactory(
133+
depends_on_projects=['llvm','clang','clang-tools-extra','lld','cross-project-tests'],
134+
extra_configure_args=[
135+
"-DCMAKE_C_COMPILER=gcc",
136+
"-DCMAKE_CXX_COMPILER=g++",
137+
"-DCMAKE_BUILD_TYPE=Release",
138+
"-DCLANG_ENABLE_ARCMT=OFF",
139+
"-DCLANG_ENABLE_CLANGD=OFF",
140+
"-DLLVM_BUILD_RUNTIME=OFF",
141+
"-DLLVM_CCACHE_BUILD=ON",
142+
"-DLLVM_INCLUDE_EXAMPLES=OFF",
143+
"-DLLVM_DEFAULT_TARGET_TRIPLE=x86_64-sie-ps5",
144+
"-DLLVM_ENABLE_ASSERTIONS=ON",
145+
"-DLLVM_LIT_ARGS=--verbose -j100",
146+
"-DLLVM_TARGETS_TO_BUILD=X86",
147+
"-DLLVM_USE_LINKER=gold"])},
148+
127149
# Expensive checks builders.
128150

129151
{'name' : "llvm-clang-x86_64-expensive-checks-ubuntu",

buildbot/osuosl/master/config/status.py

+2
Original file line numberDiff line numberDiff line change
@@ -344,10 +344,12 @@ def getReporters():
344344
utils.LLVMDefaultBuildStatusGenerator(
345345
builders = [
346346
"llvm-clang-x86_64-sie-ubuntu-fast",
347+
"llvm-clang-x86_64-sie-ps5-fast",
347348
"llvm-clang-x86_64-sie-win",
348349
"llvm-clang-x86_64-sie-win-release",
349350
"llvm-clang-x86_64-gcc-ubuntu",
350351
"llvm-clang-x86_64-gcc-ubuntu-release",
352+
"llvm-clang-x86_64-gcc-ubuntu-no-asserts",
351353
"cross-project-tests-sie-ubuntu",
352354
"cross-project-tests-sie-ubuntu-dwarf5",
353355
"clang-x86_64-linux-abi-test",

buildbot/osuosl/master/config/workers.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -325,7 +325,7 @@ def get_all():
325325
create_worker("thinlto-x86-64-bot1", properties={'jobs': 64}, max_builds=1),
326326
create_worker("thinlto-x86-64-bot2", properties={'jobs': 64}, max_builds=1),
327327

328-
# Ubuntu 20.04 on AWS, x86_64 PS4 target
328+
# Ubuntu 22.04 on AWS, x86_64 PS4 target
329329
create_worker("sie-linux-worker", properties={'jobs': 40}, max_builds=1),
330330
# 2012 Mac Mini host, 16GB memory:
331331
# - Ubuntu 18.04 in docker container
@@ -337,6 +337,8 @@ def get_all():
337337
# Ubuntu 20.04 on AWS, AMD EPYC 7R13 shared
338338
create_worker("sie-linux-worker2", max_builds=1),
339339
create_worker("sie-linux-worker3", max_builds=1),
340+
# Ubuntu 22.04 on AWS, x86_64 PS5 target
341+
create_worker("sie-linux-worker4", properties={'jobs': 40}, max_builds=1),
340342

341343
# Windows Server 2019 on AWS, x86_64 PS4 target
342344
create_worker("sie-win-worker", properties={'jobs': 64}, max_builds=1),

0 commit comments

Comments
 (0)