Merge "Support multi node jobs for tox logs"
This commit is contained in:
commit
5425d95640
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user