a047fe0e4c
* Correct usage for shutil.rmtree Fix adds correct usage of shutil.rmtree in git module Fixes: #31225 Signed-off-by: Abhijeet Kasurde <akasurde@redhat.com> * Include archive tests so they get run * Use new include syntax * Cleanup syntax on git tests - use multi-line YAML - remove unneeded {{ }} around vars in conditionals - remove unneeded quotes - add task file name to task names for easier troubleshooting when things fail * Make archive tests work for RHEL/CentOS 6 The older versions of Jinja2 in RHEL/CentOS 6 required assertion tasks using the map filter to be skipped. The older version of git required gzip compression to be skipped on RHEL/CentOS 6. * Account for ansible_distribution_major_version missing
34 lines
1.4 KiB
YAML
34 lines
1.4 KiB
YAML
- name: ARCHIVE | Clear checkout_dir
|
|
file:
|
|
state: absent
|
|
path: "{{ checkout_dir }}"
|
|
|
|
- name: ARCHIVE | Archive repo using various archival format
|
|
git:
|
|
repo: '{{ repo_format1 }}'
|
|
dest: '{{ checkout_dir }}'
|
|
archive: '{{ checkout_dir }}/test_role.{{ item }}'
|
|
register: git_archive
|
|
with_items: "{{ git_archive_extensions[ansible_os_family ~ ansible_distribution_major_version | default('default') ] | default(git_archive_extensions.default) }}"
|
|
|
|
# The map filter was added in Jinja2 2.7, which is newer than the version on RHEL/CentOS 6,
|
|
# so we skip this validation on those hosts
|
|
- name: ARCHIVE | Assert that archives were downloaded
|
|
assert:
|
|
that: (git_archive.results | map(attribute='changed') | unique | list)[0]
|
|
when:
|
|
- "ansible_os_family == 'RedHat'"
|
|
- ansible_distribution_major_version | version_compare('7', '>=')
|
|
|
|
- name: ARCHIVE | Check if archive file is created or not
|
|
stat:
|
|
path: '{{ checkout_dir }}/test_role.{{ item }}'
|
|
register: archive_check
|
|
with_items: "{{ git_archive_extensions[ansible_os_family ~ ansible_distribution_major_version | default('default') ] | default(git_archive_extensions.default) }}"
|
|
|
|
- name: ARCHIVE | Assert that archive files exist
|
|
assert:
|
|
that: (archive_check.results | map(attribute='stat.exists') | unique | list)[0]
|
|
when:
|
|
- "ansible_os_family == 'RedHat'"
|
|
- ansible_distribution_major_version | version_compare('7', '>=')
|