You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
498 B
19 lines
498 B
- hosts: primary |
|
roles: |
|
- role: stage-output |
|
stage_dir: "{{ ansible_user_dir }}/workspace" |
|
|
|
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
|
|
|