summaryrefslogtreecommitdiff
path: root/playbooks/zuul-stream/post.yaml
blob: 2c717a82eaaa2d565a871e931c3284bd205fa519 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
- hosts: controller
  tasks:

    - set_fact:
        output_dir: "{{ zuul.executor.log_root }}/stream-files"

    - name: Make log subdir
      file:
        path: "{{ output_dir }}"
        state: directory
      delegate_to: localhost

    - name: Rename job-output.txt
      command: mv job-output.txt stream-job-output.txt

    - name: Fetch files
      synchronize:
        src: "{{ ansible_user_dir }}/{{ item }}"
        dest: "{{ output_dir }}"
        mode: pull
      with_items:
        - logging.json
        - ansible.cfg
        - stream-job-output.txt
        - job-output.json