ca0daf1734
The base job that we use has switched to bionic nodeset [1] so use that instead of defining use of nodeset locally. [1] https://review.openstack.org/#/c/639096/ Change-Id: I7ae8e95d2dca05ae2e55600a48454064e432c676
29 lines
909 B
YAML
29 lines
909 B
YAML
- hosts: primary
|
|
|
|
roles:
|
|
- role: fetch-tox-output
|
|
zuul_work_dir: "{{ ansible_user_dir }}/workspace/python-manilaclient"
|
|
tox_envlist: functional
|
|
- role: fetch-subunit-output
|
|
zuul_work_dir: "{{ ansible_user_dir }}/workspace/python-manilaclient"
|
|
tox_envlist: functional
|
|
tasks:
|
|
- name: Copy job config files
|
|
synchronize:
|
|
src: "{{ ansible_user_dir }}/workspace/python-manilaclient/etc"
|
|
dest: "{{ zuul.executor.log_root }}"
|
|
mode: pull
|
|
verify_host: true
|
|
- 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
|