Merge "Support multi node jobs for tox logs"

This commit is contained in:
Jenkins 2017-07-25 16:00:44 +00:00 committed by Gerrit Code Review
commit 5425d95640

View File

@ -9,14 +9,25 @@
use_regex: yes
register: result
- name: Set tox log path for multiple nodes
set_fact:
log_path: "{{ zuul.executor.log_root }}/{{ inventory_hostname }}/tox"
when: groups['all'] | length > 1
- name: Set tox log path for single node
set_fact:
log_path: "{{ zuul.executor.log_root }}/tox"
when: log_path is not defined
- name: Ensure local tox dir
file:
path: "{{ zuul.executor.log_root }}/tox"
path: "{{ log_path }}"
state: directory
delegate_to: localhost
- name: Collect tox logs
synchronize:
dest: "{{ zuul.executor.log_root }}/tox"
dest: "{{ log_path }}"
mode: pull
src: "{{ item.path }}/log/"
verify_host: true