Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
44 changes: 0 additions & 44 deletions buildbot/osuosl/master/config/builders.py
Original file line number Diff line number Diff line change
Expand Up @@ -3536,50 +3536,6 @@
script_interpreter=None,
clean=True)},

# Builders similar to used in Buildkite premerge pipeline.
# Please keep in sync with llvm-project/.ci configurations.

# See https://github.com/llvm/llvm-project/blob/main/.ci/monolithic-windows.sh.
{'name' : "premerge-monolithic-windows",
'tags' : ["premerge"],
'workernames' : ["premerge-windows-1"],
'builddir': "premerge-monolithic-windows",
'factory' : UnifiedTreeBuilder.getCmakeWithNinjaWithMSVCBuildFactory(
vs="autodetect",
depends_on_projects=["clang-tools-extra", "clang", "libclc", "lld", "llvm", "mlir", "polly"],
checks=["check-all"],
install_pip_requirements = True,
clean = True,
extra_configure_args=[
"-DCMAKE_BUILD_TYPE=Release",
"-DLLVM_ENABLE_ASSERTIONS=ON",
"-DLLVM_BUILD_EXAMPLES=ON",
"-DCOMPILER_RT_BUILD_LIBFUZZER=OFF",
"-DLLVM_LIT_ARGS=-v",
"-DMLIR_ENABLE_BINDINGS_PYTHON=ON",
"-DCOMPILER_RT_BUILD_ORC=OFF",
"-DCMAKE_C_COMPILER_LAUNCHER=sccache",
"-DCMAKE_CXX_COMPILER_LAUNCHER=sccache"])},
# See https://github.com/llvm/llvm-project/blob/main/.ci/monolithic-linux.sh.
{'name': "premerge-monolithic-linux",
'tags' : ["premerge"],
'collapseRequests': False,
'workernames': ["premerge-linux-1"],
'builddir': "premerge-monolithic-linux",
'factory': UnifiedTreeBuilder.getCmakeWithNinjaBuildFactory(
depends_on_projects=["bolt", "clang", "clang-tools-extra", "compiler-rt", "flang", "flang-rt", "libc", "libclc", "lld", "llvm", "mlir", "polly"],
install_pip_requirements = True,
extra_configure_args=[
"-DCMAKE_BUILD_TYPE=Release",
"-DLLVM_ENABLE_ASSERTIONS=ON",
"-DLLVM_BUILD_EXAMPLES=ON",
"-DCOMPILER_RT_BUILD_LIBFUZZER=OFF",
"-DMLIR_ENABLE_BINDINGS_PYTHON=ON",
"-DLLVM_LIT_ARGS=-v",
"-DLLVM_ENABLE_LLD=ON",
"-DCMAKE_CXX_FLAGS=-gmlt",
"-DLLVM_CCACHE_BUILD=ON"])},

]

# LLDB remote-linux builder env variables.
Expand Down
10 changes: 0 additions & 10 deletions buildbot/osuosl/master/config/status.py
Original file line number Diff line number Diff line change
Expand Up @@ -550,16 +550,6 @@ def getReporters():
utils.LLVMDefaultBuildStatusGenerator(
builders = ["clang-cmake-x86_64-avx512-linux"])
]),
reporters.MailNotifier(
fromaddr = status_email_fromaddr,
sendToInterestedUsers = False,
extraRecipients = ["[email protected]", "[email protected]"],
generators = [
utils.LLVMDefaultBuildStatusGenerator(
builders = [
"premerge-monolithic-windows",
"premerge-monolithic-linux"])
]),
reporters.MailNotifier(
fromaddr = status_email_fromaddr,
sendToInterestedUsers = False,
Expand Down
7 changes: 0 additions & 7 deletions buildbot/osuosl/master/config/workers.py
Original file line number Diff line number Diff line change
Expand Up @@ -406,11 +406,4 @@ def get_all():
# FIXME: A placeholder for annoying worker which nobody could stop.
# adding it avoid logs spammed by failed authentication for that worker.
create_worker("mlir-ubuntu-worker0"),

# Linux builder matching Buildkite pre-merge checks configuration.
create_worker("premerge-linux-1", max_builds=1, missing_timeout=300,
notify_on_missing="[email protected]"),
# Windows builder matching Buildkite pre-merge checks configuration.
create_worker("premerge-windows-1", max_builds=1, missing_timeout=300,
notify_on_missing="[email protected]"),
]