Paul Belanger | 0d53e47 | 2017-02-23 17:08:58 -0500 | [diff] [blame] | 1 | - hosts: all |
| 2 | tasks: |
| 3 | - name: Collect console log. |
| 4 | synchronize: |
| 5 | dest: "{{ zuul.launcher.log_root }}" |
| 6 | mode: pull |
| 7 | src: "/tmp/console.log" |
| 8 | |
| 9 | - name: Collect tox logs. |
| 10 | synchronize: |
Paul Belanger | d8c6219 | 2017-02-24 10:02:50 -0500 | [diff] [blame] | 11 | dest: "{{ zuul.launcher.log_root }}/tox" |
Paul Belanger | 0d53e47 | 2017-02-23 17:08:58 -0500 | [diff] [blame] | 12 | mode: pull |
| 13 | src: "/home/zuul/workspace/src/{{ zuul.project }}/.tox/pep8/log/" |
| 14 | |
Paul Belanger | d8c6219 | 2017-02-24 10:02:50 -0500 | [diff] [blame] | 15 | - name: publish tox logs. |
| 16 | copy: |
| 17 | dest: "/opt/zuul-logs/{{ zuul.uuid}}" |
| 18 | src: "{{ zuul.launcher.log_root }}/" |
| 19 | delegate_to: 127.0.0.1 |