mirror of
https://github.com/Fishwaldo/u-boot.git
synced 2025-03-20 22:21:41 +00:00
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>
This commit is contained in:
parent
d94604d558
commit
ee168783ae
1 changed files with 4 additions and 0 deletions
|
@ -332,6 +332,10 @@ matrix:
|
||||||
- name: "sloccount"
|
- name: "sloccount"
|
||||||
script:
|
script:
|
||||||
- sloccount .
|
- 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
|
# test/py
|
||||||
- name: "test/py sandbox"
|
- name: "test/py sandbox"
|
||||||
|
|
Loading…
Add table
Reference in a new issue