From a59e4b0dd86eb8b4051d67b43b0386b4a1c03579 Mon Sep 17 00:00:00 2001 From: Thomas Petazzoni Date: Sat, 2 Dec 2017 14:16:57 +0100 Subject: [PATCH] .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 --- .gitlab-ci.yml | 2 +- .gitlab-ci.yml.in | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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 -- 2.30.2