diff options
author | Tom Rini <trini@konsulko.com> | 2018-12-06 16:39:43 -0500 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2018-12-10 17:21:36 -0500 |
commit | ee168783ae889cf449cee36cc1e51e108a210ed4 (patch) | |
tree | 452dfc731aae6505fb195c72c239486a88f2155c /.travis.yml | |
parent | d94604d558cda9f89722c967d6f8d6269a2db21c (diff) | |
download | u-boot-ee168783ae889cf449cee36cc1e51e108a210ed4.tar.gz |
travis: Add check for configs without MAINTAINERS entries
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@konsulko.com>
Diffstat (limited to '.travis.yml')
-rw-r--r-- | .travis.yml | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml index ed07d817fa..fe2dfce9bf 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" |