Skip to content

Commit bc2e038

Browse files
[CI] Remove old premerge bots
This patch removes the old LLVM premerge bots from llvm-zorg in preparation for adding in the new ones. Reviewers: cmtice, dschuff, gkistanova, gburgessiv, Keenuts, lnihlen Reviewed By: cmtice, Keenuts Pull Request: #529
1 parent b23ad2e commit bc2e038

File tree

3 files changed

+0
-61
lines changed

3 files changed

+0
-61
lines changed

buildbot/osuosl/master/config/builders.py

Lines changed: 0 additions & 44 deletions
Original file line numberDiff line numberDiff line change
@@ -3536,50 +3536,6 @@
35363536
script_interpreter=None,
35373537
clean=True)},
35383538

3539-
# Builders similar to used in Buildkite premerge pipeline.
3540-
# Please keep in sync with llvm-project/.ci configurations.
3541-
3542-
# See https://github.com/llvm/llvm-project/blob/main/.ci/monolithic-windows.sh.
3543-
{'name' : "premerge-monolithic-windows",
3544-
'tags' : ["premerge"],
3545-
'workernames' : ["premerge-windows-1"],
3546-
'builddir': "premerge-monolithic-windows",
3547-
'factory' : UnifiedTreeBuilder.getCmakeWithNinjaWithMSVCBuildFactory(
3548-
vs="autodetect",
3549-
depends_on_projects=["clang-tools-extra", "clang", "libclc", "lld", "llvm", "mlir", "polly"],
3550-
checks=["check-all"],
3551-
install_pip_requirements = True,
3552-
clean = True,
3553-
extra_configure_args=[
3554-
"-DCMAKE_BUILD_TYPE=Release",
3555-
"-DLLVM_ENABLE_ASSERTIONS=ON",
3556-
"-DLLVM_BUILD_EXAMPLES=ON",
3557-
"-DCOMPILER_RT_BUILD_LIBFUZZER=OFF",
3558-
"-DLLVM_LIT_ARGS=-v",
3559-
"-DMLIR_ENABLE_BINDINGS_PYTHON=ON",
3560-
"-DCOMPILER_RT_BUILD_ORC=OFF",
3561-
"-DCMAKE_C_COMPILER_LAUNCHER=sccache",
3562-
"-DCMAKE_CXX_COMPILER_LAUNCHER=sccache"])},
3563-
# See https://github.com/llvm/llvm-project/blob/main/.ci/monolithic-linux.sh.
3564-
{'name': "premerge-monolithic-linux",
3565-
'tags' : ["premerge"],
3566-
'collapseRequests': False,
3567-
'workernames': ["premerge-linux-1"],
3568-
'builddir': "premerge-monolithic-linux",
3569-
'factory': UnifiedTreeBuilder.getCmakeWithNinjaBuildFactory(
3570-
depends_on_projects=["bolt", "clang", "clang-tools-extra", "compiler-rt", "flang", "flang-rt", "libc", "libclc", "lld", "llvm", "mlir", "polly"],
3571-
install_pip_requirements = True,
3572-
extra_configure_args=[
3573-
"-DCMAKE_BUILD_TYPE=Release",
3574-
"-DLLVM_ENABLE_ASSERTIONS=ON",
3575-
"-DLLVM_BUILD_EXAMPLES=ON",
3576-
"-DCOMPILER_RT_BUILD_LIBFUZZER=OFF",
3577-
"-DMLIR_ENABLE_BINDINGS_PYTHON=ON",
3578-
"-DLLVM_LIT_ARGS=-v",
3579-
"-DLLVM_ENABLE_LLD=ON",
3580-
"-DCMAKE_CXX_FLAGS=-gmlt",
3581-
"-DLLVM_CCACHE_BUILD=ON"])},
3582-
35833539
]
35843540

35853541
# LLDB remote-linux builder env variables.

buildbot/osuosl/master/config/status.py

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -550,16 +550,6 @@ def getReporters():
550550
utils.LLVMDefaultBuildStatusGenerator(
551551
builders = ["clang-cmake-x86_64-avx512-linux"])
552552
]),
553-
reporters.MailNotifier(
554-
fromaddr = status_email_fromaddr,
555-
sendToInterestedUsers = False,
556-
extraRecipients = ["[email protected]", "[email protected]"],
557-
generators = [
558-
utils.LLVMDefaultBuildStatusGenerator(
559-
builders = [
560-
"premerge-monolithic-windows",
561-
"premerge-monolithic-linux"])
562-
]),
563553
reporters.MailNotifier(
564554
fromaddr = status_email_fromaddr,
565555
sendToInterestedUsers = False,

buildbot/osuosl/master/config/workers.py

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -406,11 +406,4 @@ def get_all():
406406
# FIXME: A placeholder for annoying worker which nobody could stop.
407407
# adding it avoid logs spammed by failed authentication for that worker.
408408
create_worker("mlir-ubuntu-worker0"),
409-
410-
# Linux builder matching Buildkite pre-merge checks configuration.
411-
create_worker("premerge-linux-1", max_builds=1, missing_timeout=300,
412-
notify_on_missing="[email protected]"),
413-
# Windows builder matching Buildkite pre-merge checks configuration.
414-
create_worker("premerge-windows-1", max_builds=1, missing_timeout=300,
415-
notify_on_missing="[email protected]"),
416409
]

0 commit comments

Comments
 (0)