Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit cd6d27c3 authored by Julien Desprez's avatar Julien Desprez
Browse files

Include droid in required targets

We never want to filter out 'droid' when it exists

Test: presubmit
Bug: 378704055
Change-Id: I9f8849cc825c19de99321f5687ee655ea2a0503a
parent 1f07601d
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -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):