Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/videolan/dav1d.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthias Dressel <code@deadcode.eu>2020-04-03 05:29:21 +0300
committerJean-Baptiste Kempf <jb@videolan.org>2020-04-03 15:27:29 +0300
commit85519d0e8bdf2af76ce642a7f9e1432ba5e824f6 (patch)
treec482961000cd8f1a95e76c95481ddc0c938ffd44 /.gitlab-ci.yml
parent71f27407dd4d16f1ce2ce2ea9071a1b0816c2c27 (diff)
CI: Add debug messages to style checks
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r--.gitlab-ci.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 768842c..213ce51 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -56,8 +56,8 @@ style-check:
extends: .debian-amd64-common
stage: style
script:
- - git grep -I -n -P "\t|\r| $" -- . ':(exclude)*/compat/*' && exit 1
- - git grep -I -n -i "david" -- . ':(exclude)THANKS.md' ':(exclude).gitlab-ci.yml' && exit 1
+ - git grep -I -n -P "\t|\r| $" -- . ':(exclude)*/compat/*' && echo "Trailing whitespace" && exit 1
+ - git grep -I -n -i "david" -- . ':(exclude)THANKS.md' ':(exclude).gitlab-ci.yml' && echo "Misspelled dav1d" && exit 1
- git grep -I -l -z "" -- . ':(exclude)*/compat/*' | while IFS= read -r -d '' i; do
if [ -n "$(tail -c 1 "$i")" ]; then
echo "No newline at end of $i";