|
53 | 53 | "mlir": {"flang"}, |
54 | 54 | # Test everything if ci scripts are changed. |
55 | 55 | ".ci": { |
56 | | - "llvm", |
57 | | - "clang", |
58 | | - "lld", |
59 | | - "lldb", |
60 | | - "bolt", |
61 | | - "clang-tools-extra", |
62 | | - "mlir", |
63 | | - "polly", |
64 | | - "flang", |
65 | | - "libclc", |
| 56 | +# "llvm", |
| 57 | +# "clang", |
| 58 | +# "lld", |
| 59 | +# "lldb", |
| 60 | +# "bolt", |
| 61 | +# "clang-tools-extra", |
| 62 | +# "mlir", |
| 63 | +# "polly", |
| 64 | +# "flang", |
| 65 | +# "libclc", |
66 | 66 | "openmp", |
67 | 67 | }, |
68 | 68 | } |
|
77 | 77 | DEPENDENT_RUNTIMES_TO_TEST = { |
78 | 78 | "clang": {"compiler-rt"}, |
79 | 79 | "clang-tools-extra": {"libc"}, |
80 | | - ".ci": {"compiler-rt", "libc"}, |
| 80 | + # ".ci": {"compiler-rt", "libc"}, |
81 | 81 | } |
82 | 82 | DEPENDENT_RUNTIMES_TO_TEST_NEEDS_RECONFIG = { |
83 | 83 | "llvm": {"libcxx", "libcxxabi", "libunwind"}, |
84 | 84 | "clang": {"libcxx", "libcxxabi", "libunwind"}, |
85 | | - ".ci": {"libcxx", "libcxxabi", "libunwind"}, |
| 85 | + # ".ci": {"libcxx", "libcxxabi", "libunwind"}, |
86 | 86 | } |
87 | 87 |
|
88 | 88 | EXCLUDE_LINUX = { |
@@ -170,6 +170,7 @@ def _exclude_projects(current_projects: Set[str], platform: str) -> Set[str]: |
170 | 170 | def _compute_projects_to_test(modified_projects: Set[str], platform: str) -> Set[str]: |
171 | 171 | projects_to_test = set() |
172 | 172 | for modified_project in modified_projects: |
| 173 | + sys.stderr.write("HELLO " + modified_project) |
173 | 174 | if modified_project in RUNTIMES: |
174 | 175 | continue |
175 | 176 | # Skip all projects where we cannot run tests. |
@@ -207,6 +208,8 @@ def _compute_runtimes_to_test(modified_projects: Set[str], platform: str) -> Set |
207 | 208 | for modified_project in modified_projects: |
208 | 209 | if modified_project in DEPENDENT_RUNTIMES_TO_TEST: |
209 | 210 | runtimes_to_test.update(DEPENDENT_RUNTIMES_TO_TEST[modified_project]) |
| 211 | +# if modified_project in RUNTIMES: |
| 212 | +# runtimes_to_test.add(modified_project) |
210 | 213 | return _exclude_projects(runtimes_to_test, platform) |
211 | 214 |
|
212 | 215 |
|
|
0 commit comments