Skip to content

Commit

Permalink
run clang-tools-extra tests on clang-x64-windows-msvc
Browse files Browse the repository at this point in the history
  • Loading branch information
nico committed Oct 31, 2019
1 parent 42519d0 commit 68341a8
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions zorg/buildbot/builders/annotated/clang-windows.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,22 @@ def main(argv):
ap = annotated_builder.get_argument_parser()
args = ap.parse_args(argv[1:])

projects = ['llvm', 'clang', 'lld', 'debuginfo-tests']
projects = ['llvm', 'clang', 'clang-tools-extra', 'lld', 'debuginfo-tests']
stages = 2
extra_cmake_args = [
'-DCMAKE_BUILD_TYPE=Release',
'-DLLVM_ENABLE_PDB=ON',
'-DLLVM_ENABLE_ASSERTIONS=ON',
'-DLLVM_TARGETS_TO_BUILD=all',
]
check_targets = ['check-llvm', 'check-clang', 'check-lld', 'check-debuginfo']
check_targets = [
'check-llvm',
'check-clang',
'check-clang-tools',
'check-clangd',
'check-lld',
'check-debuginfo',
]

# Check both stage 1 and stage 2.
check_stages = [True] * stages
Expand Down

0 comments on commit 68341a8

Please sign in to comment.