e40889e711
* Enable installing collections from git repositories * Add tests for installing individual and multiple collections from git repositories * Test to make sure recursive dependencies with different syntax are deduplicated * Add documentation * add a changelog * Skip Python 2.6 * Only fail if no collections are located in a git repository Add support for a 'type' key for collections in requirement.yml files. Update the changelog and document the supported keys and allowed values for the type. Add a note that the collection(s) in the repo must contain a galaxy.yml * Add a warning about embedding credentials in SCM URLs * Update with review suggestions * suppress sanity compile failure for Python 2.6
19 lines
661 B
YAML
19 lines
661 B
YAML
- name: ensure git is installed
|
|
package:
|
|
name: git
|
|
when: ansible_distribution != "MacOSX"
|
|
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'
|