[llvm] [CI] Exclude gn changes from running premerge (PR #133623)
Aiden Grossman via llvm-commits
llvm-commits at lists.llvm.org
Sat Mar 29 23:25:32 PDT 2025
https://github.com/boomanaiden154 created https://github.com/llvm/llvm-project/pull/133623
These changes are mostly pushed by the gnsyncbot directly to main and thus don't go through a PR, but we still test on main to see if main is broken. Given these touch llvm/, they end up burning a decent amount of testing time for no real benefit, so I think it makes sense to exclude them from premerge testing explicitly.
>From 03e1df1a5ed2a3160e656802879efc96d5cf4d98 Mon Sep 17 00:00:00 2001
From: Aiden Grossman <aidengrossman at google.com>
Date: Sun, 30 Mar 2025 06:22:31 +0000
Subject: [PATCH] [CI] Exclude gn changes from running premerge
These changes are mostly pushed by the gnsyncbot directly to main and
thus don't go through a PR, but we still test on main to see if main is
broken. Given these touch llvm/, they end up burning a decent amount of
testing time for no real benefit, so I think it makes sense to exclude
them from premerge testing explicitly.
---
.ci/compute_projects.py | 5 +++++
.ci/compute_projects_test.py | 9 +++++++++
2 files changed, 14 insertions(+)
diff --git a/.ci/compute_projects.py b/.ci/compute_projects.py
index 7445e92eba1b1..ff43547c9bbe5 100644
--- a/.ci/compute_projects.py
+++ b/.ci/compute_projects.py
@@ -200,6 +200,11 @@ def _get_modified_projects(modified_files: list[str]) -> Set[str]:
# documentation builds.
if len(path_parts) > 2 and path_parts[1] == "docs":
continue
+ # Exclude files for the gn build. We do not test it within premerge
+ # and changes occur often enough that they otherwise take up
+ # capacity.
+ if len(path_parts) > 3 and path_parts[:3] == ("llvm", "utils", "gn"):
+ continue
modified_projects.add(pathlib.Path(modified_file).parts[0])
return modified_projects
diff --git a/.ci/compute_projects_test.py b/.ci/compute_projects_test.py
index 1807337aefed4..e787fd8133c86 100644
--- a/.ci/compute_projects_test.py
+++ b/.ci/compute_projects_test.py
@@ -179,6 +179,15 @@ def test_exclude_docs(self):
self.assertEqual(env_variables["runtimes_to_build"], "")
self.assertEqual(env_variables["runtimes_check_targets"], "")
+ def test_exclude_gn(self):
+ env_variables = compute_projects.get_env_variables(
+ ["llvm/utils/gn/build/BUILD.gn"], "Linux"
+ )
+ self.assertEqual(env_variables["projects_to_build"], "")
+ self.assertEqual(env_variables["project_check_targets"], "")
+ self.assertEqual(env_variables["runtimes_to_build"], "")
+ self.assertEqual(env_variables["runtimes_check_targets"], "")
+
if __name__ == "__main__":
unittest.main()
More information about the llvm-commits
mailing list