Skip to content

Commit

Permalink
[zorg] Remove the clang-ppc64le-linux bot
Browse files Browse the repository at this point in the history
This patch aims to remove the clang-ppc64le-linux bot.

The clang-ppc64le-linux bot was originally meant to be a bot to build LLVM and
run LIT tests, in order to quickly notify of any regressions. However, building
on the bot is not particularly quick at all.

As this bot only performs a subset of the tests that the other bots runs, and
that the average build times shown on the webpage exceeds that of other bots
(such as the multistage bot), it defeats the purpose of having this "quick bot"
in the first place.

Differential Revision: https://reviews.llvm.org/D111813
  • Loading branch information
amy-kwan committed Oct 14, 2021
1 parent dd585d5 commit 7752cc0
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 14 deletions.
13 changes: 0 additions & 13 deletions buildbot/osuosl/master/config/builders.py
Expand Up @@ -646,19 +646,6 @@
stage1_config='Release',
extra_cmake_args=["-DLLVM_ENABLE_ASSERTIONS=ON"])},

{'name' : "clang-ppc64le-linux",
'tags' : ["clang", "ppc", "ppc64le"],
'workernames' : ["ppc64le-clang-test"],
'builddir': "clang-ppc64le",
'factory' : ClangBuilder.getClangCMakeBuildFactory(
clean=False,
checkout_lld=False,
useTwoStage=False,
stage1_config='Release',
extra_cmake_args=[
"-DLLVM_ENABLE_ASSERTIONS=ON",
"-DPYTHON_EXECUTABLE:FILEPATH=/usr/local/bin/python3"])},

{'name' : "clang-ppc64le-rhel",
'tags' : ["clang", "ppc", "ppc64le"],
'workernames' : ["ppc64le-clang-rhel-test"],
Expand Down
1 change: 0 additions & 1 deletion buildbot/osuosl/master/config/workers.py
Expand Up @@ -77,7 +77,6 @@ def get_all():
create_worker("ppc64be-sanitizer", properties={'jobs': 16}, max_builds=1),

# POWER 8 PowerPC little endian (powerpc64le)
create_worker("ppc64le-clang-test", properties={'jobs': 4}, max_builds=1),
create_worker("ppc64le-clang-lnt-test", properties={'jobs': 8}, max_builds=1),
create_worker("ppc64le-clang-multistage-test", properties={'jobs': 8}, max_builds=1),
create_worker("ppc64le-sanitizer", properties={'jobs': 4}, max_builds=1),
Expand Down

0 comments on commit 7752cc0

Please sign in to comment.