.gitlab-ci.yml: extend check-package test to hash files

Now that all issues in hash files have been fixed, let's try to make
sure we don't introduce new ones by checking regularly the hash files
issues in Gitlab CI.

Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
This commit is contained in:
Thomas Petazzoni 2017-12-02 14:16:57 +01:00
parent 705fd01931
commit a59e4b0dd8
2 changed files with 2 additions and 2 deletions

View File

@ -32,7 +32,7 @@ check-DEVELOPERS:
check-package: check-package:
script: script:
- find . -type f -name '*.mk' -exec ./utils/check-package {} + - find . -type f \( -name '*.mk' -o -name '*.hash' \) -exec ./utils/check-package {} +
.defconfig: &defconfig .defconfig: &defconfig
# Running the defconfigs for every push is too much, so limit to # Running the defconfigs for every push is too much, so limit to

View File

@ -32,7 +32,7 @@ check-DEVELOPERS:
check-package: check-package:
script: script:
- find . -type f -name '*.mk' -exec ./utils/check-package {} + - find . -type f \( -name '*.mk' -o -name '*.hash' \) -exec ./utils/check-package {} +
.defconfig: &defconfig .defconfig: &defconfig
# Running the defconfigs for every push is too much, so limit to # Running the defconfigs for every push is too much, so limit to