diff options
author | 2024-12-10 12:21:30 -0800 | |
---|---|---|
committer | 2024-12-10 22:04:41 +0000 | |
commit | cd6d27c3ade1835609cfacfe4d6ca488149148b0 (patch) | |
tree | 2128c540c16d25bb6b1eec7a0810d246d41b21cf /ci | |
parent | 1f07601d45c0a7c3aab78d57d37c4714ae4918bb (diff) |
Include droid in required targets
We never want to filter out 'droid' when it exists
Test: presubmit
Bug: 378704055
Change-Id: I9f8849cc825c19de99321f5687ee655ea2a0503a
Diffstat (limited to 'ci')
-rw-r--r-- | ci/build_test_suites.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/ci/build_test_suites.py b/ci/build_test_suites.py index b67ecec09a..9ef3c3c4df 100644 --- a/ci/build_test_suites.py +++ b/ci/build_test_suites.py @@ -33,7 +33,9 @@ import test_discovery_agent REQUIRED_ENV_VARS = frozenset(['TARGET_PRODUCT', 'TARGET_RELEASE', 'TOP', 'DIST_DIR']) SOONG_UI_EXE_REL_PATH = 'build/soong/soong_ui.bash' LOG_PATH = 'logs/build_test_suites.log' -REQUIRED_BUILD_TARGETS = frozenset(['dist']) +# Currently, this prevents the removal of those tags when they exist. In the future we likely +# want the script to supply 'dist directly +REQUIRED_BUILD_TARGETS = frozenset(['dist', 'droid']) class Error(Exception): |