You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
- name: SETUP | clean out the output_dir
|
|
|
|
file:
|
|
|
|
path: "{{ output_dir }}"
|
|
|
|
state: absent
|
|
|
|
|
|
|
|
- name: SETUP | create clean output_dir
|
|
|
|
file:
|
|
|
|
path: "{{ output_dir }}"
|
|
|
|
state: directory
|
|
|
|
|
|
|
|
- name: SETUP | verify that git is installed so this test can continue
|
|
|
|
shell: which git
|
|
|
|
|
|
|
|
- name: SETUP | get git version, only newer than {{git_version_supporting_depth}} has fixed git depth
|
|
|
|
shell: git --version | grep 'git version' | sed 's/git version //'
|
|
|
|
register: git_version
|
|
|
|
|
|
|
|
- name: SETUP | get gpg version
|
|
|
|
shell: gpg --version 2>1 | head -1 | sed -e 's/gpg (GnuPG) //'
|
|
|
|
register: gpg_version
|
|
|
|
|
|
|
|
- name: SETUP | set git global user.email if not already set
|
|
|
|
shell: git config --global user.email || git config --global user.email "noreply@example.com"
|
|
|
|
|
|
|
|
- name: SETUP | set git global user.name if not already set
|
|
|
|
shell: git config --global user.name || git config --global user.name "Ansible Test Runner"
|
|
|
|
|
|
|
|
- name: SETUP | create repo_dir
|
|
|
|
file:
|
|
|
|
path: "{{ repo_dir }}"
|
|
|
|
state: directory
|