
- Remove the unused variables in trovestack.rc which leads to module not found error. - Remove non-voting gate job Change-Id: I583945addb6cb0aa442db1c9d9c6ce3cb57793f7
20 lines
664 B
YAML
20 lines
664 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 \
|
|
{{ datastore_type }} \
|
|
{{ guest_os }} \
|
|
{{ guest_os_release }} \
|
|
false \
|
|
{{ guest_username }} \
|
|
{{ ansible_user_dir }}/images/trove-{{ zuul.branch }}-{{ datastore_type }}-{{ guest_os }}-{{ guest_os_release }}.qcow2
|
|
args:
|
|
chdir: "{{ ansible_user_dir }}/src/opendev.org/openstack/trove/integration/scripts"
|
|
tags:
|
|
- skip_ansible_lint
|