scripts: ci: check_compliance: Fix paths for disallowed Kconfigs
Fixes using the wrong path for checking if disallowed Kconfigs are present, to use the zephyr base instead of the git top level folder which caused issues for downstream manifests Signed-off-by: Jamie McCrae <jamie.mccrae@nordicsemi.no>
This commit is contained in:
parent
02aa01ddcf
commit
5e1aaa5395
1 changed files with 2 additions and 2 deletions
|
@ -715,10 +715,10 @@ class KconfigCheck(ComplianceTest):
|
||||||
|
|
||||||
grep_stdout_boards = git("grep", "--line-number", "-I", "--null",
|
grep_stdout_boards = git("grep", "--line-number", "-I", "--null",
|
||||||
"--perl-regexp", regex_boards, "--", ":boards",
|
"--perl-regexp", regex_boards, "--", ":boards",
|
||||||
cwd=Path(GIT_TOP))
|
cwd=ZEPHYR_BASE)
|
||||||
grep_stdout_socs = git("grep", "--line-number", "-I", "--null",
|
grep_stdout_socs = git("grep", "--line-number", "-I", "--null",
|
||||||
"--perl-regexp", regex_socs, "--", ":soc",
|
"--perl-regexp", regex_socs, "--", ":soc",
|
||||||
cwd=Path(GIT_TOP))
|
cwd=ZEPHYR_BASE)
|
||||||
|
|
||||||
# Board processing
|
# Board processing
|
||||||
# splitlines() supports various line terminators
|
# splitlines() supports various line terminators
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue