Merge "Use WORKSPACE for requirements"

This commit is contained in:
Jenkins 2017-05-29 18:29:42 +00:00 committed by Gerrit Code Review
commit 536eb6d8d2
2 changed files with 7 additions and 1 deletions

View File

@ -36,7 +36,7 @@
ironicinspector_git_url: "{{ lookup('env', 'WORKSPACE') }}/openstack/ironic-inspector"
ironicinspectorclient_git_url: "{{ lookup('env', 'WORKSPACE') }}/openstack/python-ironic-inspector-client"
keystone_git_url: "/opt/git/openstack/keystone"
reqs_git_url: "/opt/git/openstack/requirements"
reqs_git_url: "{{ lookup('env', 'WORKSPACE') }}/openstack/requirements"
staging_drivers_git_url: "/opt/git/openstack/ironic-staging-drivers"
# TODO(TheJulia) Fix the above paths to be consistent, because the NV job gets the dib
# folder cloned, while the gate job does not. Likely need to work out a semi-hybrid

View File

@ -0,0 +1,6 @@
---
fixes:
- |
The CI test playbook previously looked for the requirements respository in
``/opt/git/openstack/``. This has been changed to use the ``WORKSPACE``
environment variable when being executed.