500b4016eb
Default to true to preserve existing behavior. Change-Id: I7d34fdce546fd37d13aeed78e45f119fc52fe2ef
11 lines
323 B
YAML
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
|