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
26 lines
771 B
YAML
26 lines
771 B
YAML
- name: SETUP-LOCAL-REPOS | create dirs
|
|
file:
|
|
name: "{{ item }}"
|
|
state: directory
|
|
with_items:
|
|
- "{{ repo_dir }}/minimal"
|
|
- "{{ repo_dir }}/shallow"
|
|
|
|
- name: SETUP-LOCAL-REPOS | prepare minimal git repo
|
|
shell: git init; echo "1" > a; git add a; git commit -m "1"
|
|
args:
|
|
chdir: "{{ repo_dir }}/minimal"
|
|
|
|
- name: SETUP-LOCAL-REPOS | prepare git repo for shallow clone
|
|
shell: |
|
|
git init;
|
|
echo "1" > a; git add a; git commit -m "1"; git tag earlytag; git branch earlybranch;
|
|
echo "2" > a; git add a; git commit -m "2";
|
|
args:
|
|
chdir: "{{ repo_dir }}/shallow"
|
|
|
|
- name: SETUP-LOCAL-REPOS | set old hash var for shallow test
|
|
command: 'git rev-parse HEAD~1'
|
|
register: git_shallow_head_1
|
|
args:
|
|
chdir: "{{ repo_dir }}/shallow"
|