From 6944d17be94dae3e1c4575809b607392544b6790 Mon Sep 17 00:00:00 2001 From: Fu Hanxi Date: Mon, 16 Oct 2023 12:07:47 +0200 Subject: [PATCH] ci: set env var NIGHTLY_RUN while checking the apps readme files sometimes we may want to build & test on only a specific set of targets, add `NIGHTLY_RUN == "1"` for this use case --- tools/ci/check_build_test_rules.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tools/ci/check_build_test_rules.py b/tools/ci/check_build_test_rules.py index 9eaab86430..fc61312943 100755 --- a/tools/ci/check_build_test_rules.py +++ b/tools/ci/check_build_test_rules.py @@ -518,6 +518,7 @@ if __name__ == '__main__': ) if arg.action == 'check-readmes': + os.environ['NIGHTLY_RUN'] = '1' check_readme( list(check_dirs), exclude_dirs=_exclude_dirs,