Merge "Fix ansible-lint job"

This commit is contained in:
Zuul 2018-03-29 13:52:58 +00:00 committed by Gerrit Code Review
commit 819cc19d3f
5 changed files with 16 additions and 1 deletions

View File

@ -1,6 +1,9 @@
# TODO(pabelanger): Handle cleanup on static nodes
- name: Start zuul_console daemon.
zuul_console:
tags:
# Avoid "no action detected in task" linter error
- skip_ansible_lint
- name: Synchronize src repos to workspace directory.
synchronize:

View File

@ -90,6 +90,8 @@
shell: "mv {{ item.path }} {{ item.path | regex_replace(extensions_regex, '\\1_\\2.txt') }}"
with_items: "{{ log_files_to_rename.files }}"
chdir: "{{ stage_dir }}/logs"
tags:
- skip_ansible_lint
# NOTE(andreaf) The ansible module does not support recursive archive, so
# using gzip is the only option here. The good bit is that gzip itself is
@ -104,3 +106,5 @@
when:
- stage_compress_logs
- item.type == 'logs'
tags:
- skip_ansible_lint

View File

@ -1,3 +1,6 @@
# TODO(pabelanger): Handle cleanup on static nodes
- name: Start zuul_console daemon.
zuul_console:
tags:
# Avoid "no action detected in task" linter error
- skip_ansible_lint

View File

@ -56,3 +56,6 @@
zuul:
log_url: "{{ zuul_log_url }}/{{ zuul_log_path }}/"
when: zuul_log_url is defined
tags:
# Avoid "no action detected in task" linter error
- skip_ansible_lint

View File

@ -25,7 +25,7 @@ commands = python setup.py build_sphinx
passenv =
# NOTE(pabelanger): if you'd like to run tox -elinters locally, you'll need
# to export ANSIBLE_ROLES_PATH pointing to the currect repos.
# see infra-zuul-jobs-linters job for more information.
# see openstack-zuul-jobs-linters job for more information.
ANSIBLE_ROLES_PATH
whitelist_externals = bash
commands =
@ -34,6 +34,8 @@ commands =
# [ANSIBLE0012] Commands should not change things if nothing needs doing
bash -c "find playbooks -type f -regex '.*.ya?ml' -print0 | \
xargs -t -n1 -0 ansible-lint -xANSIBLE0012"
bash -c 'find roles -maxdepth 1 -mindepth 1 -type d -printf "%p/\n" | \
xargs -t -n1 ansible-lint -xANSIBLE0012'
# Ansible Syntax Check
bash -c "find playbooks -type f -regex '.*.ya?ml' -exec \
ansible-playbook --syntax-check -i {toxinidir}/tests/inventory \{\} + > /dev/null"