Merge "build-python-release: Add flag for whether to build a wheel or not"
This commit is contained in:
commit
984147663c
@ -8,6 +8,11 @@ Build sdist and wheel for Python projects.
|
|||||||
The python interpreter to use. Set it to "python3" to use python 3,
|
The python interpreter to use. Set it to "python3" to use python 3,
|
||||||
for example.
|
for example.
|
||||||
|
|
||||||
|
.. zuul:rolevar:: build_wheel
|
||||||
|
:default: true
|
||||||
|
|
||||||
|
Whether to build a wheel. Set to false to just build an sdist tarball.
|
||||||
|
|
||||||
.. zuul:rolevar:: bdist_wheel_xargs
|
.. zuul:rolevar:: bdist_wheel_xargs
|
||||||
:default: ''
|
:default: ''
|
||||||
|
|
||||||
|
@ -1,3 +1,4 @@
|
|||||||
zuul_work_dir: "{{ zuul.project.src_dir }}"
|
zuul_work_dir: "{{ zuul.project.src_dir }}"
|
||||||
release_python: "python"
|
release_python: "python"
|
||||||
bdist_wheel_xargs: ""
|
bdist_wheel_xargs: ""
|
||||||
|
build_wheel: true
|
||||||
|
@ -2,3 +2,9 @@
|
|||||||
command: "{{ release_python }} setup.py sdist bdist_wheel {{ bdist_wheel_xargs }}"
|
command: "{{ release_python }} setup.py sdist bdist_wheel {{ bdist_wheel_xargs }}"
|
||||||
args:
|
args:
|
||||||
chdir: "{{ zuul_work_dir }}"
|
chdir: "{{ zuul_work_dir }}"
|
||||||
|
when: build_wheel
|
||||||
|
- name: Just build a tarball
|
||||||
|
command: "{{ release_python }} setup.py sdist"
|
||||||
|
args:
|
||||||
|
chdir: "{{ zuul_work_dir }}"
|
||||||
|
when: not build_wheel
|
||||||
|
Loading…
Reference in New Issue
Block a user