829297c37a
Did didn't have ansible-lint setup properly, as a results our roles weren't actually linted properly. Fix variable linting issues and ignore ANSIBLE0012. Change-Id: I07aa940245e700c9f08df0f1920720f0ed9d3de0 Signed-off-by: Paul Belanger <pabelanger@redhat.com>
13 lines
285 B
YAML
13 lines
285 B
YAML
- name: Check if project's tools/test-setup.sh exists
|
|
stat:
|
|
path: "{{ zuul_work_dir }}/tools/test-setup.sh"
|
|
register: p
|
|
|
|
- name: Run tools/test-setup.sh
|
|
command: tools/test-setup.sh
|
|
args:
|
|
chdir: "{{ zuul_work_dir }}"
|
|
when:
|
|
- p.stat.exists
|
|
- p.stat.executable
|