From: Thomas Petazzoni Date: Sat, 2 Dec 2017 13:16:57 +0000 (+0100) Subject: .gitlab-ci.yml: extend check-package test to hash files X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=a59e4b0dd86eb8b4051d67b43b0386b4a1c03579;p=buildroot.git .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 --- diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index a6540d1fda..dc7fd846ed 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -32,7 +32,7 @@ check-DEVELOPERS: check-package: script: - - find . -type f -name '*.mk' -exec ./utils/check-package {} + + - find . -type f \( -name '*.mk' -o -name '*.hash' \) -exec ./utils/check-package {} + .defconfig: &defconfig # Running the defconfigs for every push is too much, so limit to diff --git a/.gitlab-ci.yml.in b/.gitlab-ci.yml.in index 0d2e239414..9a1e7a1e34 100644 --- a/.gitlab-ci.yml.in +++ b/.gitlab-ci.yml.in @@ -32,7 +32,7 @@ check-DEVELOPERS: check-package: script: - - find . -type f -name '*.mk' -exec ./utils/check-package {} + + - find . -type f \( -name '*.mk' -o -name '*.hash' \) -exec ./utils/check-package {} + .defconfig: &defconfig # Running the defconfigs for every push is too much, so limit to