mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
ci: build all when has env var NIGHTLY_RUN
This commit is contained in:
parent
ed418eaf06
commit
719f43d286
@ -30,6 +30,8 @@ BUILD_ALL_LABELS = [
|
|||||||
'BOT_LABEL_BUILD_ALL_APPS',
|
'BOT_LABEL_BUILD_ALL_APPS',
|
||||||
'BOT_LABEL_REGULAR_TEST',
|
'BOT_LABEL_REGULAR_TEST',
|
||||||
'BOT_LABEL_WEEKEND_TEST',
|
'BOT_LABEL_WEEKEND_TEST',
|
||||||
|
'NIGHTLY_RUN',
|
||||||
|
'BOT_LABEL_NIGHTLY_RUN',
|
||||||
]
|
]
|
||||||
|
|
||||||
|
|
||||||
|
@ -85,7 +85,7 @@ class IDFAssignTest(CIAssignTest.AssignTest):
|
|||||||
|
|
||||||
def search_cases(self, case_filter=None):
|
def search_cases(self, case_filter=None):
|
||||||
_filter = deepcopy(case_filter) if case_filter else {}
|
_filter = deepcopy(case_filter) if case_filter else {}
|
||||||
if 'NIGHTLY_RUN' in os.environ:
|
if 'NIGHTLY_RUN' in os.environ or 'BOT_LABEL_NIGHTLY_RUN' in os.environ:
|
||||||
_filter.update({'nightly_run': True})
|
_filter.update({'nightly_run': True})
|
||||||
return super().search_cases(_filter)
|
return super().search_cases(_filter)
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user