zuul-jobs/roles/build-python-release/tasks/main.yaml
Doug Hellmann 836cc85eec support passing extra arguments to bdist_wheel in build-python-release
Users of this role may want to pass extra arguments, such as the
--universal flag. Those arguments need to come after the bdist_wheel
argument to setup.py so that the command line processor understands them.

Change-Id: I38a3ef28b2c78821ec81a3f1adf0cfeef946d98f
Signed-off-by: Doug Hellmann <doug@doughellmann.com>
2018-10-04 14:27:13 -04:00

5 lines
156 B
YAML

- name: Build a tarball and wheel
command: "{{release_python}} setup.py sdist bdist_wheel {{bdist_wheel_xargs}}"
args:
chdir: "{{ zuul_work_dir }}"