easyconfigs-it4i/.gitlab-ci.yml
2018-10-02 14:12:39 +02:00

28 lines
583 B
YAML

stages:
- test
docs:
stage: test
image: davidhrbac/docker-mdcheck:latest
script:
- mdl -r ~MD013 *.md
big_files:
stage: test
image: davidhrbac/docker-mdcheck:latest
allow_failure: true
script:
- find . -type f -size +10M | grep -v ".git"
- find . -type f -size +10M -print0 | grep -v ".git"
only:
- master
other_files:
stage: test
image: davidhrbac/docker-mdcheck:latest
allow_failure: true
script:
- find . -type f | egrep -v ".eb|.patch|.sh|.yml|.git|.md|LICENSE"
- find . -type f -print0 | egrep -v ".eb|.patch|.sh|.yml|.git|.md|LICENSE"