26249ff1db
This patch do step 1 in the docs: Move Legacy Jobs to Projects. Co-Authored-By: Kien Nguyen <kiennt@vn.fujitsu.com> Change-Id: I25f13b53e08d9065baa8ce93149831714512410e Partial-Implements: blueprint migrate-to-zuulv3
16 lines
411 B
YAML
16 lines
411 B
YAML
- hosts: primary
|
|
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
|