ansible-lint: Handle some git warnings

Ignore some places where ansible warns about git usage.

Change-Id: I9c5c19cca8c1c32ee0cde85e2ec66140364c14bc
This commit is contained in:
Andreas Jaeger 2017-10-28 16:33:05 +02:00 committed by Andreas Jaeger
parent bccbc1b221
commit e117d34e91
2 changed files with 14 additions and 0 deletions

View File

@ -6,6 +6,9 @@
args:
chdir: "{{ ansible_user_dir }}/src/{{ item.canonical_name }}"
with_items: "{{ zuul._projects.values() | list }}"
# ANSIBLE0006: git remote add is not supported by ansible module
tags:
- skip_ansible_lint
roles:
- role: configure-git
git_config:

View File

@ -12,6 +12,10 @@
with_together:
- "{{ zuul._projects.values() | list }}"
- "{{ cached_repos.results }}"
# ANSIBLE0006: If we use the git module, we get warning
# ANSIBLE0004 since we do not give an explicit version
tags:
- skip_ansible_lint
- name: Clone upstream repo to workspace
command: "git clone https://{{ item.0.canonical_hostname }}/{{ item.0.name}} {{ ansible_user_dir }}/{{ item.0.src_dir}}"
@ -21,9 +25,16 @@
with_together:
- "{{ zuul._projects.values() | list }}"
- "{{ cached_repos.results }}"
# ANSIBLE0006: If we use the git module, we get warning
# ANSIBLE0004 since we do not give an explicit version
tags:
- skip_ansible_lint
- name: Remove origin from local git repos
command: "git remote rm origin"
args:
chdir: "{{ ansible_user_dir }}/{{ item.src_dir}}"
with_items: "{{ zuul._projects.values() | list }}"
# ANSIBLE0006: git remote is not supported by ansible module
tags:
- skip_ansible_lint