Use WORKSPACE for requirements

Since we actually need the contents of the requirements repository
to be in sync, and we need the correct branch in CI, we need
to use a copy put in place by zuul-cloner.

Depends-On: I64d1744c776c20d906a29e072602c1909853da25
Change-Id: I495872fff3dea15c1e8ea74dcdd75ec04db59fbc
This commit is contained in:
Julia Kreger 2017-05-25 14:02:23 +00:00
parent feb41a1476
commit acf0052bd6
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.