f67d09d315
These 2 jobs will be used to copy release / branch tarballs to tarballs.o.o. Branch tarballs will only copy *.tar.gz, while release jobs will copy both *.tar.gz and *.whl files. Change-Id: Ic879302a2006b737ee4364cea067a00ebe198951 Depends-On: Ia79802dd386dbf1287af16a59985ce99a7dd4899 Depends-On: Ic7fc31a372de29a3a97ef84539faf3b0a1d6e181 Signed-off-by: Paul Belanger <pabelanger@redhat.com>
31 lines
802 B
YAML
31 lines
802 B
YAML
- hosts: all
|
|
roles:
|
|
- fetch-tox-output
|
|
|
|
post_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: Ensure artifacts directory exists.
|
|
file:
|
|
path: "{{ zuul.executor.work_root }}/artifacts"
|
|
state: directory
|
|
delegate_to: localhost
|
|
|
|
- name: Collect tarball artifacts.
|
|
synchronize:
|
|
dest: "{{ zuul.executor.work_root }}/artifacts/"
|
|
mode: pull
|
|
src: "{{ item.path }}"
|
|
verify_host: true
|
|
with_items: "{{ result.files }}"
|