mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
ci: add all nightly run env vars while checking
This commit is contained in:
parent
4f4f32ecf2
commit
eb37150780
@ -97,6 +97,7 @@ variables:
|
|||||||
|
|
||||||
if echo "$CI_MERGE_REQUEST_LABELS" | egrep "(^|,)include_nightly_run(,|$)"; then
|
if echo "$CI_MERGE_REQUEST_LABELS" | egrep "(^|,)include_nightly_run(,|$)"; then
|
||||||
export INCLUDE_NIGHTLY_RUN="1"
|
export INCLUDE_NIGHTLY_RUN="1"
|
||||||
|
export NIGHTLY_RUN="1"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# configure cmake related flags
|
# configure cmake related flags
|
||||||
|
@ -66,6 +66,10 @@ examples/system/esp_timer:
|
|||||||
- if: IDF_TARGET in ["esp32p4"]
|
- if: IDF_TARGET in ["esp32p4"]
|
||||||
temporary: true
|
temporary: true
|
||||||
reason: target(s) is not supported yet # TODO: IDF-7529
|
reason: target(s) is not supported yet # TODO: IDF-7529
|
||||||
|
disable_test:
|
||||||
|
- if: IDF_TARGET in ["esp32c6", "esp32h2"]
|
||||||
|
temporary: true
|
||||||
|
reason: lack of runner
|
||||||
depends_components:
|
depends_components:
|
||||||
- esp_timer
|
- esp_timer
|
||||||
|
|
||||||
@ -188,8 +192,10 @@ examples/system/ota/simple_ota_example:
|
|||||||
|
|
||||||
examples/system/perfmon:
|
examples/system/perfmon:
|
||||||
enable:
|
enable:
|
||||||
- if: IDF_TARGET in ["esp32", "esp32s2", "esp32s3"]
|
- if: IDF_TARGET in ["esp32", "esp32s2", "esp32s3"] and NIGHTLY_RUN == "1"
|
||||||
reason: xtensa only feature
|
reason: xtensa only feature
|
||||||
|
- if: IDF_TARGET == "esp32"
|
||||||
|
reason: testing on a single target is sufficient
|
||||||
depends_components:
|
depends_components:
|
||||||
- perfmon
|
- perfmon
|
||||||
|
|
||||||
|
@ -481,6 +481,7 @@ if __name__ == '__main__':
|
|||||||
)
|
)
|
||||||
|
|
||||||
if arg.action == 'check-readmes':
|
if arg.action == 'check-readmes':
|
||||||
|
os.environ['INCLUDE_NIGHTLY_RUN'] = '1'
|
||||||
os.environ['NIGHTLY_RUN'] = '1'
|
os.environ['NIGHTLY_RUN'] = '1'
|
||||||
check_readme(
|
check_readme(
|
||||||
list(check_dirs),
|
list(check_dirs),
|
||||||
@ -489,6 +490,7 @@ if __name__ == '__main__':
|
|||||||
)
|
)
|
||||||
elif arg.action == 'check-test-scripts':
|
elif arg.action == 'check-test-scripts':
|
||||||
os.environ['INCLUDE_NIGHTLY_RUN'] = '1'
|
os.environ['INCLUDE_NIGHTLY_RUN'] = '1'
|
||||||
|
os.environ['NIGHTLY_RUN'] = '1'
|
||||||
check_test_scripts(
|
check_test_scripts(
|
||||||
list(check_dirs),
|
list(check_dirs),
|
||||||
exclude_dirs=_exclude_dirs,
|
exclude_dirs=_exclude_dirs,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user