easyconfigs-it4i/.gitlab-ci.yml
2018-10-02 14:29:47 +02:00

24 lines
650 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
script:
- find . -type f -not -path "*.git*" -size +10M
- find . -type f -not -path "*.git*" -size +10M -exec false {} +
other_files:
stage: test
image: davidhrbac/docker-mdcheck:latest
script:
- find . -type f -not -path "*.git*" ! -name "*.eb" ! -name "*.patch*" ! -name ".git*" ! -name "LICENSE" ! -name "*.md"
- find . -type f -not -path "*.git*" ! -name "*.eb" ! -name "*.patch*" ! -name ".git*" ! -name "LICENSE" ! -name "*.md" -exec false {} +