f77f89104a
* remove the roles build function and relevant documentation that moved to the gate-quickstart role * follow up the role rename in README.md * add tripleo-ci to the skipped projects * remove empty/placeholder files * add and rename the playbook build-test-packages.yml used by the ci-scripts Change-Id: I105824e4b3bc71a9fdaf00496f243a7a1f868783
32 lines
578 B
YAML
32 lines
578 B
YAML
---
|
|
|
|
- name: Add the virthost to the inventory
|
|
hosts: localhost
|
|
tasks:
|
|
- name: Add virthost
|
|
add_host:
|
|
name: "{{ virthost }}"
|
|
groups: "virthost"
|
|
ansible_fqdn: "{{ virthost }}"
|
|
ansible_user: "root"
|
|
ansible_host: "{{ virthost }}"
|
|
tags:
|
|
- provision
|
|
|
|
- name: Inventory the virthost
|
|
hosts: localhost
|
|
gather_facts: yes
|
|
roles:
|
|
- tripleo-inventory
|
|
tags:
|
|
- provision
|
|
|
|
- include: teardown.yml
|
|
|
|
- include: provision.yml
|
|
|
|
- name: Build test packages using DLRN
|
|
hosts: virthost
|
|
roles:
|
|
- build-test-packages
|