9e464b6438
There is no need to have this disabled (seems to be by default). We already have ensured our SSH hostkeys have been setup properly. Change-Id: I5f0ffea13b4adb053c10d56728bcf02c13255513 Signed-off-by: Paul Belanger <pabelanger@redhat.com>
12 lines
305 B
YAML
12 lines
305 B
YAML
- hosts: all
|
|
tasks:
|
|
- name: Collect tarball artifacts.
|
|
synchronize:
|
|
dest: "{{ zuul.executor.src_root }}/tarballs"
|
|
mode: pull
|
|
src: "src/{{ zuul.project.canonical_name }}/dist/{{ item }}"
|
|
verify_host: true
|
|
with_items:
|
|
- "*.tar.gz"
|
|
- "*.whl"
|