[U-Boot] [PATCH] travis: Add check for configs without MAINTAINERS entries
Tom Rini
trini at konsulko.com
Thu Dec 6 21:39:43 UTC 2018
The genboardscfg.py script will emit a WARNING message if we have new
defconfig files that are not listed in a MAINTAINERS file. Make new
cases of this a failure we catch in Travis-CI.
Signed-off-by: Tom Rini <trini at konsulko.com>
---
.travis.yml | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/.travis.yml b/.travis.yml
index a061f02399c0..4c4336746e69 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -332,6 +332,10 @@ matrix:
- name: "sloccount"
script:
- sloccount .
+ # ensure all configs have MAINTAINERS entries
+ - name: "Check for configs without MAINTAINERS entry"
+ script:
+ - if [ `./tools/genboardscfg.py -f 2>&1 | wc -l` -ne 0 ]; then exit 1; fi
# test/py
- name: "test/py sandbox"
--
2.7.4
More information about the U-Boot
mailing list