7c60dadb9a
* Start of alpine testing * More updates * Add forgotten file * remove debug * Add alpine3 * equal * group 4 * group 4 * group 5 * Try to decrease test length * libuser only available in testing * Remove debug * Make loops target work on hosts without gnu date * Enable alpine testing * ci_complete * Don't specify uid for creating test user * ci_complete * Re-sort docker completion * use newer container image * ci_complete * fix indentation Co-authored-by: Matt Clay <matt@mystile.com> Co-authored-by: Matt Clay <matt@mystile.com>
19 lines
677 B
YAML
19 lines
677 B
YAML
- name: ensure git is installed
|
|
package:
|
|
name: git
|
|
when: ansible_distribution not in ["MacOSX", "Alpine"]
|
|
register: git_install
|
|
|
|
- name: set git global user.email if not already set
|
|
shell: git config --global user.email || git config --global user.email "noreply@example.com"
|
|
|
|
- name: set git global user.name if not already set
|
|
shell: git config --global user.name || git config --global user.name "Ansible Test Runner"
|
|
|
|
- name: Create a directory for installing collections and creating git repositories
|
|
file:
|
|
path: '{{ item }}'
|
|
state: directory
|
|
loop:
|
|
- '{{ galaxy_dir }}/ansible_collections'
|
|
- '{{ galaxy_dir }}/development/ansible_test'
|