blob: faeb65ba723b76e56fab1b88f7128af1e81864f5 [file] [log] [blame]
Adrià Vilanova Martíneza8341d02022-01-17 00:18:30 +01001- name: Is there a cws-log.txt
2 register: stat_log
3 stat:
4 path: "{{ zuul.project.src_dir }}/cws-log.txt"
5
6- name: Store on executor
7 when: stat_log.stat.exists
8 synchronize:
9 mode: pull
10 src: "{{ zuul.project.src_dir }}/cws-log.txt"
11 dest: "{{ zuul.executor.log_root }}/cws-log.txt"
12 verify_host: true
13 owner: no
14 group: no