diff --git a/build_tools/github_actions/configure_ci.py b/build_tools/github_actions/configure_ci.py index b728dacd1b4e..90dc1c4a46a8 100755 --- a/build_tools/github_actions/configure_ci.py +++ b/build_tools/github_actions/configure_ci.py @@ -138,6 +138,8 @@ def contains(cls, val): "runtime/src/iree/hal/drivers/cuda/*", # Common code likely enough to affect code paths unique to NVIDIA GPUs: "compiler/src/iree/compiler/GlobalOptimization/*", + # Tests. + "tests/e2e/*", ] AMDGPU_PATHS = [ @@ -146,6 +148,8 @@ def contains(cls, val): "runtime/src/iree/hal/drivers/hip/*", # Common code likely enough to affect code paths unique to AMDGPU: "compiler/src/iree/compiler/GlobalOptimization/*", + # Tests. + "tests/e2e/*", ] # Jobs to run in presumbit if files under the corresponding path see changes.