39ec972694
This patch implements first step in zuulv3 migration guide [1]: Move jobs to tap-as-a-servire repo [1] https://docs.openstack.org/infra/manual/zuulv3.html#legacy-job-migration-details Change-Id: I5615d5b86fe51eba79536183cd8244475c84cc15 Needed-By: Id7bbd12a3250849c11860221524e650917247cec
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
|