9909e00ede
Bifrost intiially had support for parsing ZUUL_CHANGES, however due to changes in it's gate CI jobs, these steps are no longer necessary. As a result of this change, we also need to support copying files directly and not forcibly resetting the git status since the repositories are provided to us in the way they are needed without additional work. As a result, added logic to the preparation and git download role to support local file copies instead of git downloads. Also changed default source location for CI testing repos to leverage the WORKSPACE environment variable. Change-Id: I23e902c8637e142fba23d71467225d48ee265253 Depends-On: I01c16990dc66988fab29c41ec4b4e6094213b2ca
23 lines
975 B
YAML
23 lines
975 B
YAML
---
|
|
# git_root is the folder where to place downloaded git repos
|
|
git_root: "/opt/stack"
|
|
# *_git_url can be overridden by local clones for offline installs
|
|
dib_git_url: https://git.openstack.org/openstack/diskimage-builder
|
|
ironicclient_git_url: https://git.openstack.org/openstack/python-ironicclient
|
|
shade_git_url: https://git.openstack.org/openstack-infra/shade
|
|
ironic_git_url: https://git.openstack.org/openstack/ironic
|
|
# *_git_folder can be overridden by local clones for offline installs
|
|
ironicclient_git_folder: "{{ git_root}}/python-ironicclient"
|
|
ironic_git_folder: "{{ git_root}}/ironic"
|
|
shade_git_folder: "{{ git_root}}/shade"
|
|
dib_git_folder: "{{ git_root }}/diskimage-builder"
|
|
# *_git_branch can be overridden for stable branch testing
|
|
ironicclient_git_branch: master
|
|
ironic_git_branch: master
|
|
shade_git_branch: master
|
|
dib_git_branch: master
|
|
|
|
# Conditional variables utilized based on CI or manual testing options.
|
|
copy_from_local_path: false
|
|
ci_testing_zuul: false
|