They're already used in the CI, and chances are high that non-venv installation is broken on at least some supported systems. Change-Id: Ie3c93a0a1537658eaccf69da3f64d0fc43f292d1
15 lines
785 B
YAML
15 lines
785 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 }}"
|
|
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 }}"
|
|
ENABLE_VENV: "{{ use_venv | default(true) | bool | lower }}"
|
|
ZUUL_BRANCH: "{{ zuul.branch }}"
|