2cf21258af
It has been deprecated and untested since ussuri, time to move on. Change-Id: Ieddda38b12d07a2a5c51650850b150dd82f332a9
18 lines
974 B
YAML
18 lines
974 B
YAML
- hosts: all
|
|
tasks:
|
|
- shell:
|
|
cmd: bash scripts/test-bifrost.sh
|
|
chdir: "{{ ansible_user_dir }}/{{ zuul.projects['opendev.org/openstack/bifrost'].src_dir }}"
|
|
environment:
|
|
BUILD_IMAGE: "{{ build_image | default(false) | bool | lower }}"
|
|
CLI_TEST: "{{ cli_test | default(false) | bool | lower }}"
|
|
ENABLE_KEYSTONE: "{{ enable_keystone | default(false) | bool | lower }}"
|
|
LOG_LOCATION: "{{ ansible_user_dir }}/logs"
|
|
UPPER_CONSTRAINTS_FILE: "{{ ansible_user_dir }}/{{ zuul.projects['opendev.org/openstack/requirements'].src_dir }}/upper-constraints.txt"
|
|
WORKSPACE: "{{ ansible_user_dir }}/src/opendev.org"
|
|
USE_DHCP: "{{ use_dhcp | default(false) | bool | lower }}"
|
|
ZUUL_BRANCH: "{{ zuul.branch }}"
|
|
BOOT_MODE: "{{ boot_mode | default('') }}"
|
|
TEST_VM_NODE_DRIVER: "{{ test_driver | default('ipmi') }}"
|
|
NOAUTH_MODE: "{{ noauth_mode | default(false) | bool | lower }}"
|