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.
ansible/test/integration/targets/ansible-galaxy-collection-scm/tasks/setup_multi_collection_repo...

28 lines
853 B
YAML

- name: Initialize a git repo
command: 'git init {{ galaxy_dir }}/development/ansible_test'
- stat:
path: "{{ galaxy_dir }}/development/ansible_test"
- name: Add a couple collections to the repository
command: 'ansible-galaxy collection init {{ item }}'
args:
chdir: '{{ galaxy_dir }}/development'
loop:
- 'ansible_test.collection_1'
- 'ansible_test.collection_2'
- name: Add collection_2 as a dependency of collection_1
lineinfile:
path: '{{ galaxy_dir }}/development/ansible_test/collection_1/galaxy.yml'
regexp: '^dependencies'
line: "dependencies: {'git+file://{{ galaxy_dir }}/development/ansible_test/.git#collection_2/': '*'}"
- name: Commit the changes
command: '{{ item }}'
args:
chdir: '{{ galaxy_dir }}/development/ansible_test'
loop:
- git add ./
- git commit -m 'add collections'