From 7db4aa112e0ab86ebdbefa326fdcd3820decd0c3 Mon Sep 17 00:00:00 2001 From: Scott Todd Date: Wed, 7 Aug 2024 09:55:50 -0700 Subject: [PATCH] Run opt-in GPU test jobs when changing tests/e2e/*. (#18138) Would have been nice to run tests on https://github.com/iree-org/iree/pull/18134, without needing to use the `ci-extra` git trailer. --- build_tools/github_actions/configure_ci.py | 4 ++++ 1 file changed, 4 insertions(+) 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.