b85ff4bd3f
This is a first iteration to refactor zuul v3 jobs for ARA. It gets rid of the code duplication and streamlines the jobs and their layouts. - Use a single playbook for post.yaml - Use a single playbook for run.yaml (add in variables) - Use the bindep role for installing bindep.txt - Move outside of /workspace/, we don't need that place anymore - Add integration test coverage for debian - Add integration test coverage for opensuse (non-voting, pending an encoding issue in the nodepool image build) - Move non-voting declarations to the layout (it's clearer that way) - Document the testing matrix Change-Id: I9e894f6eaa4763ddf93f989d2214488d70a0dbde
15 lines
385 B
YAML
15 lines
385 B
YAML
- hosts: all
|
|
tasks:
|
|
- name: Copy files from {{ ansible_user_dir }} on node
|
|
synchronize:
|
|
src: '{{ ansible_user_dir }}/'
|
|
dest: '{{ zuul.executor.log_root }}'
|
|
mode: pull
|
|
copy_links: true
|
|
verify_host: true
|
|
rsync_opts:
|
|
- --include=/logs/**
|
|
- --include=*/
|
|
- --exclude=*
|
|
- --prune-empty-dirs
|