diff options
author | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2017-12-02 14:16:57 +0100 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2017-12-02 14:16:57 +0100 |
commit | a59e4b0dd86eb8b4051d67b43b0386b4a1c03579 (patch) | |
tree | 0b87a793cdfb0c977f00821569a1f25b7ee68039 | |
parent | 705fd01931a3d8c9be280ad3ca816d96c9de5ea8 (diff) | |
download | buildroot-a59e4b0dd86eb8b4051d67b43b0386b4a1c03579.tar.gz buildroot-a59e4b0dd86eb8b4051d67b43b0386b4a1c03579.zip |
.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>
-rw-r--r-- | .gitlab-ci.yml | 2 | ||||
-rw-r--r-- | .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 |