Ensure ChangeLog exists in install-if-python
We install projects if they are python in the sphinx jobs because autodoc needs to be able to import the package. Also, for pbr projects, many projects have links to ChangeLog in the docs, which is generated by pbr on install and sdist. Installing with pip install --no-deps does not cause the ChangeLog to be generated, so trigger it via an sdist build first. Change-Id: I4528cc7f322d1fc753eb5bc259f70c47ee9d1d80
This commit is contained in:
parent
a4e9e12241
commit
28bf5c0dcc
@ -41,6 +41,21 @@
|
|||||||
- error_on_failure
|
- error_on_failure
|
||||||
- requirements_install|failed
|
- requirements_install|failed
|
||||||
|
|
||||||
|
# Build an sdist. This is needed for pbr projects that may expect
|
||||||
|
# the ChangeLog to have been generated.
|
||||||
|
- name: Make sdist to generate ChangeLog
|
||||||
|
command:
|
||||||
|
cmd: "{{ ansible_user_dir }}/.venv/bin/python setup.py sdist"
|
||||||
|
chdir: "{{ zuul_work_dir }}"
|
||||||
|
when:
|
||||||
|
- install_package
|
||||||
|
- found_python_files.matched
|
||||||
|
register: sdist_results
|
||||||
|
failed_when:
|
||||||
|
- error_on_failure is defined
|
||||||
|
- error_on_failure
|
||||||
|
- sdist_results|failed
|
||||||
|
|
||||||
# Try installing current repo in case it needs to be available for
|
# Try installing current repo in case it needs to be available for
|
||||||
# example for version number calculation. Ignore any failures here.
|
# example for version number calculation. Ignore any failures here.
|
||||||
- name: Install the project if it is a Python project
|
- name: Install the project if it is a Python project
|
||||||
|
Loading…
Reference in New Issue
Block a user