This is a temporary change until this is merged https://review.opendev.org/c/zuul/zuul-jobs/+/964255 Change-Id: I37393416e40c66b292bdee22dc9e541490d428aa Signed-off-by: Vladimir Kozhukalov <kozhukalov@gmail.com>
27 lines
850 B
YAML
27 lines
850 B
YAML
- name: Check sibling directory
|
|
stat:
|
|
path: '{{ zuul_work_dir }}/{{ zj_image.context }}/.zuul-siblings'
|
|
register: _dot_zuul_siblings
|
|
|
|
# This should have been cleaned up; multiple builds may specify
|
|
# different siblings to include so we need to start fresh.
|
|
- name: Check for clean build
|
|
assert:
|
|
that: not _dot_zuul_siblings.stat.exists
|
|
|
|
- name: Create sibling source directory
|
|
file:
|
|
path: '{{ zuul_work_dir }}/{{ zj_image.context }}/.zuul-siblings'
|
|
state: directory
|
|
mode: 0755
|
|
when: zj_image.siblings is defined
|
|
|
|
- name: Copy sibling source directories
|
|
command:
|
|
cmd: 'cp --parents -r {{ zj_sibling }} {{ ansible_user_dir }}/{{ zuul_work_dir }}/{{ zj_image.context }}/.zuul-siblings'
|
|
chdir: '~/src'
|
|
loop: '{{ zj_image.siblings }}'
|
|
loop_control:
|
|
loop_var: zj_sibling
|
|
when: zj_image.siblings is defined
|