zuul-jobs/playbooks/tox/tarball-post.yaml
Paul Belanger 1b5c55d875 Log file stats for tox tarball / wheels
Add some additional information about tarballs / wheels we are
copying. For example, md5 and sha1 info.

Change-Id: I96d6903f8bc5ced196b1b57f93277fa87bdf31c1
Depends-On: I86ff459d283eaf348821c2f11c1f8575598f088d
Signed-off-by: Paul Belanger <pabelanger@redhat.com>
2017-08-02 16:57:33 -04:00

22 lines
593 B
YAML

- hosts: all
tasks:
- name: Find tarballs and wheels in dist folder.
find:
file_type: file
paths: "src/{{ zuul.project.canonical_name }}/dist"
patterns: "*.tar.gz,*.whl"
register: result
- name: Display stat for tarballs and wheels.
stat:
path: "{{ item.path }}"
with_items: "{{ result.files }}"
- name: Collect tarball artifacts.
synchronize:
dest: "{{ zuul.executor.work_root }}/artifacts"
mode: pull
src: "{{ item.path }}"
verify_host: true
with_items: "{{ result.files }}"