859d5ed80d
We need these for python3 support since the CentOS jobs will not run correctly under python3. Depends-on: https://review.openstack.org/#/c/627037/ Change-Id: I0e4baaaca5046f9c0ee32cf3de78133f743fd66d
16 lines
414 B
YAML
16 lines
414 B
YAML
- hosts: controller
|
|
tasks:
|
|
|
|
- name: Copy files from {{ ansible_user_dir }}/workspace/ on node
|
|
synchronize:
|
|
src: '{{ ansible_user_dir }}/workspace/'
|
|
dest: '{{ zuul.executor.log_root }}'
|
|
mode: pull
|
|
copy_links: true
|
|
verify_host: true
|
|
rsync_opts:
|
|
- --include=/logs/**
|
|
- --include=*/
|
|
- --exclude=*
|
|
- --prune-empty-dirs
|