fca8d78211
No need to use magic names since we now have host_vars, instead set wheel_python explicitly. Remove TODO comment. Change-Id: I5051a32d843b106b013b94d57fd24b63896b741a
15 lines
380 B
YAML
15 lines
380 B
YAML
- hosts: all
|
|
tasks:
|
|
- name: Ensure build logs directory exists
|
|
file:
|
|
path: "{{ zuul.executor.log_root }}/{{ wheel_python }}"
|
|
state: directory
|
|
delegate_to: localhost
|
|
|
|
- name: Collect build logs
|
|
synchronize:
|
|
dest: "{{ zuul.executor.log_root }}/{{ wheel_python }}"
|
|
mode: pull
|
|
src: ~/logs/
|
|
verify_host: true
|