Browse Source

Increase ansible-lint speed (#4632)

pull/4636/head
Andreas Krüger 5 years ago
committed by Kubernetes Prow Robot
parent
commit
3c5a4474ac
1 changed files with 1 additions and 1 deletions
  1. 2
      .gitlab-ci/lint.yml

2
.gitlab-ci/lint.yml

@ -11,7 +11,7 @@ ansible-lint:
stage: unit-tests
# lint every yml/yaml file that looks like it contains Ansible plays
script: |-
grep -Rl '^- hosts: \|^ hosts: \|^- name: ' --include \*.yml --include \*.yaml . | xargs ansible-lint -v
grep -Rl '^- hosts: \|^ hosts: \|^- name: ' --include \*.yml --include \*.yaml . | xargs -P 4 -n 25 ansible-lint -v
except: ['triggers', 'master']
syntax-check:

Loading…
Cancel
Save