zuul-jobs/roles/build-python-release/tasks/main.yaml
Tim Burke 500b4016eb build-python-release: Add flag for whether to build a wheel or not
Default to true to preserve existing behavior.

Change-Id: I7d34fdce546fd37d13aeed78e45f119fc52fe2ef
2021-06-08 14:24:44 -07:00

11 lines
323 B
YAML

- name: Build a tarball and wheel
command: "{{ release_python }} setup.py sdist bdist_wheel {{ bdist_wheel_xargs }}"
args:
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