18feeb51a8
* Use different package for DNF tests Ninja caused errors in Fedora 30. This works in both Fedora 29 and 30. * Fix git integration tests Git >= 2.21.0 has either a bug or change in behavior where it errors when fetching a repository containing submodules that are behind the upstream submodule commits. It's weird and I don't fully understand it. Get around this my checking out specific commits from a repository rather than switch the origin URL. * Fix PostgreSQL tests The error message is slightly different
43 lines
1.2 KiB
YAML
43 lines
1.2 KiB
YAML
- 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 | install git
|
|
package:
|
|
name: git
|
|
when: ansible_distribution != "MacOSX"
|
|
notify:
|
|
- remove git
|
|
- remove git from FreeBSD
|
|
|
|
- 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
|
|
|
|
- name: SETUP | show git version
|
|
debug:
|
|
msg: "Running test with git {{ git_version.stdout }}"
|