aa1d4d2246
Significant changes: * Using docker image to install datastore. * Datastore image is common to different datastores. * Using backup docker image to do backup and restore. * Support MariaDB replication * Set most of the functional jobs as non-voting as nested virtualization is not supported in CI. Change-Id: Ia9c97a63a961eebc336b70d28dc77638144c1834
19 lines
638 B
YAML
19 lines
638 B
YAML
- hosts: all
|
|
tasks:
|
|
- name: Ensure artifacts/images directory exists
|
|
file:
|
|
path: '{{ ansible_user_dir }}/images'
|
|
state: directory
|
|
- name: Build Trove guest image
|
|
shell: >-
|
|
./trovestack build-image \
|
|
{{ guest_os }} \
|
|
{{ guest_os_release }} \
|
|
{{ dev_mode }} \
|
|
{{ guest_username }} \
|
|
{{ ansible_user_dir }}/images/trove-{{ branch }}-guest-{{ guest_os }}-{{ guest_os_release }}{{ image_suffix }}.qcow2
|
|
args:
|
|
chdir: "{{ ansible_user_dir }}/src/opendev.org/openstack/trove/integration/scripts"
|
|
tags:
|
|
- skip_ansible_lint
|