install-ansible: fix collections install for devel job
This wasn't quite fixed right when these were moved into project-config. Get the projects and install them. Change-Id: I0f854609fc9aebffc1fa2a2e14d5231cce9b71d0
This commit is contained in:
parent
9fdbd56d16
commit
016e961890
@ -1,11 +1,11 @@
|
|||||||
- name: 'Ensure {{ item.namespace }}/{{ item.name }} directory'
|
- name: 'Ensure {{ item.namespace }} top-level directory'
|
||||||
file:
|
file:
|
||||||
path: '/root/.ansible/collections/ansible_collections/{{ item.namespace }}/{{ item.name }}'
|
path: '/root/.ansible/collections/ansible_collections/{{ item.namespace }}/'
|
||||||
state: directory
|
state: directory
|
||||||
mode: 0755
|
mode: 0755
|
||||||
|
|
||||||
- name: 'Link in {{ item.namespace }}/{{ item.name }} collection'
|
- name: 'Link in {{ item.namespace }}/{{ item.name }} collection'
|
||||||
file:
|
file:
|
||||||
src: '{{ ansible_user_dir}}/src/github.com/{{repo}}'
|
src: '{{ ansible_user_dir}}/src/github.com/{{ item.repo }}'
|
||||||
dest: '/root/.ansible/collections/ansible_collections/{{ item.namespace }}/{{ item.name }}'
|
dest: '/root/.ansible/collections/ansible_collections/{{ item.namespace }}/{{ item.name }}'
|
||||||
state: link
|
state: link
|
||||||
|
@ -81,6 +81,14 @@
|
|||||||
# NOTE(ianw): 2019-06-11 pinned to stable branch until we handle 1.0
|
# NOTE(ianw): 2019-06-11 pinned to stable branch until we handle 1.0
|
||||||
# http://lists.openstack.org/pipermail/openstack-infra/2019-June/006400.html
|
# http://lists.openstack.org/pipermail/openstack-infra/2019-June/006400.html
|
||||||
override-checkout: stable/0.x
|
override-checkout: stable/0.x
|
||||||
|
- name: github.com/ansible-collections/ansible.posix
|
||||||
|
override-checkout: main
|
||||||
|
- name: github.com/ansible-collections/ansible.netcommon
|
||||||
|
override-checkout: main
|
||||||
|
- name: github.com/ansible-collections/community.crypto
|
||||||
|
override-checkout: main
|
||||||
|
- name: github.com/ansible-collections/community.general
|
||||||
|
override-checkout: main
|
||||||
vars:
|
vars:
|
||||||
bridge_ansible_name: '{{ ansible_user_dir}}/src/github.com/ansible/ansible'
|
bridge_ansible_name: '{{ ansible_user_dir}}/src/github.com/ansible/ansible'
|
||||||
bridge_ansible_version: null
|
bridge_ansible_version: null
|
||||||
|
Loading…
Reference in New Issue
Block a user