Skip to content

Commit

Permalink
libc: disable benchmarks to get fullbuilds back online
Browse files Browse the repository at this point in the history
  • Loading branch information
nickdesaulniers committed Dec 12, 2024
1 parent f2bf53d commit afd8317
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions zorg/buildbot/builders/annotated/libc-linux.py
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,8 @@ def main(argv):
cmake_args.append('-DCOMPILER_RT_BUILD_SCUDO_STANDALONE_WITH_LLVM_LIBC=ON')
cmake_args.append('-DCOMPILER_RT_BUILD_GWP_ASAN=OFF')
cmake_args.append('-DCOMPILER_RT_SCUDO_STANDALONE_BUILD_SHARED=OFF')
cmake_args.append('-DLIBC_INCLUDE_BENCHMARKS=ON')
# TODO(https://github.com/llvm/llvm-project/issues/119789): re-enable
# cmake_args.append('-DLIBC_INCLUDE_BENCHMARKS=ON')

if fullbuild:
cmake_args.extend(['-DLLVM_LIBC_FULL_BUILD=ON']),
Expand Down Expand Up @@ -144,8 +145,10 @@ def main(argv):
run_command(['ninja', 'libc-integration-tests'])
with step('libc-scudo-integration-test'):
run_command(['ninja', 'libc-scudo-integration-test'])
with step('Benchmark Utils Tests'):
run_command(['ninja', 'libc-benchmark-util-tests'])
# TODO(https://github.com/llvm/llvm-project/issues/119789): re-enable
# cmake_args.append('-DLIBC_INCLUDE_BENCHMARKS=ON')
# with step('Benchmark Utils Tests'):
# run_command(['ninja', 'libc-benchmark-util-tests'])

if not (fullbuild or bootstrap_build) and x86_64_build:
with step('libc-fuzzer'):
Expand Down

0 comments on commit afd8317

Please sign in to comment.