diff --git a/buildbot/osuosl/master/config/builders.py b/buildbot/osuosl/master/config/builders.py --- a/buildbot/osuosl/master/config/builders.py +++ b/buildbot/osuosl/master/config/builders.py @@ -1988,6 +1988,15 @@ depends_on_projects=['llvm', 'libc', 'clang', 'clang-tools-extra'], extra_args=['--debug', '--asan'])}, + {'name' : "libc-x86_64-debian-dbg-lint", + 'tags' : ["libc"], + 'workernames' : ["libc-lint-worker"], + 'builddir': "libc-x86_64-debian-dbg-lint", + 'factory' : AnnotatedBuilder.getAnnotatedBuildFactory( + script="libc-linux.py", + depends_on_projects=['llvm', 'libc'], + extra_args=['--debug'])}, + # Flang builders. {'name' : "flang-aarch64-dylib", diff --git a/buildbot/osuosl/master/config/status.py b/buildbot/osuosl/master/config/status.py --- a/buildbot/osuosl/master/config/status.py +++ b/buildbot/osuosl/master/config/status.py @@ -206,7 +206,8 @@ "libc-aarch64-ubuntu-fullbuild-dbg", "libc-x86_64-debian-fullbuild-dbg", "libc-x86_64-debian-gcc-fullbuild-dbg", - "libc-x86_64-debian-fullbuild-dbg-asan"]), + "libc-x86_64-debian-fullbuild-dbg-asan", + "libc-x86_64-debian-dbg-lint"]), reporters.MailNotifier( fromaddr = "llvm.buildmaster@lab.llvm.org", sendToInterestedUsers = False, diff --git a/buildbot/osuosl/master/config/workers.py b/buildbot/osuosl/master/config/workers.py --- a/buildbot/osuosl/master/config/workers.py +++ b/buildbot/osuosl/master/config/workers.py @@ -187,6 +187,9 @@ # Debian x86_64 Intel Skylake 32 CPUs, 128 GB RAM create_worker("libc-x86_64-debian-fullbuild", properties={'jobs': 32}, max_builds=2), + # Debian x86_64 Intel Cascade Lake 8 CPU, 32 GB RAM + create_worker("libc-lint-worker", properties={'jobs': 16}, max_builds=2) + # Windows Server on Xeon Gold 6130 (2x2.1GHz), 128Gb of RAM create_worker("as-builder-1", properties={ 'remote_test_host': 'jetson6.lab.llvm.org',