From 040f1c78117f9ec90d951f7560198ec9b2fcaf65 Mon Sep 17 00:00:00 2001 From: Paul Kirth Date: Thu, 21 Nov 2024 10:54:32 -0800 Subject: [PATCH] [llvm] Update pgo collection script to reflect Mainainers file (#117197) The collect_and_build_with_pgo.py script used CODE_OWNERS.TXT as part of its heuristic, but now that its gone, the script will fail to recognize an LLVM checkout. --- llvm/utils/collect_and_build_with_pgo.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/llvm/utils/collect_and_build_with_pgo.py b/llvm/utils/collect_and_build_with_pgo.py index 4c30dc876411ed..7d45dc88298497 100755 --- a/llvm/utils/collect_and_build_with_pgo.py +++ b/llvm/utils/collect_and_build_with_pgo.py @@ -425,7 +425,7 @@ def _looks_like_llvm_dir(directory): contents = set(os.listdir(directory)) expected_contents = [ - "CODE_OWNERS.TXT", + "Maintainers.md", "cmake", "docs", "include",