Split the log_path creation into its own role
This is so that we can call it in the pre playbook for emitting info. As part of doing this, use include_role to run it from upload-logs as it always wants to be used there. Change-Id: Ibd7d6bdb6275d052bcef2af068882e9b2876ef83
This commit is contained in:
parent
5083adc2a8
commit
97d5602faa
9
roles/generate-log-url/tasks/main.yaml
Normal file
9
roles/generate-log-url/tasks/main.yaml
Normal file
@ -0,0 +1,9 @@
|
||||
- name: Set log path for a change
|
||||
when: zuul.change is defined
|
||||
set_fact:
|
||||
log_path: "{{ zuul.change[-2:] }}/{{ zuul.change }}/{{ zuul.patchset }}/{{ zuul.pipeline }}/{{ zuul.job }}/{{ zuul.build[:7] }}"
|
||||
|
||||
- name: Set log path for a ref update
|
||||
when: zuul.newrev is defined
|
||||
set_fact:
|
||||
log_path: "{{ zuul.newrev[-2:] }}/{{ zuul.newrev }}/{{ zuul.pipeline }}/{{ zuul.job }}/{{ zuul.build[:7] }}"
|
@ -1,12 +1,5 @@
|
||||
- name: Set log path for a change
|
||||
when: zuul.change is defined
|
||||
set_fact:
|
||||
log_path: "{{ zuul.change[-2:] }}/{{ zuul.change }}/{{ zuul.patchset }}/{{ zuul.pipeline }}/{{ zuul.job }}/{{ zuul.build[:7] }}"
|
||||
|
||||
- name: Set log path for a ref update
|
||||
when: zuul.newrev is defined
|
||||
set_fact:
|
||||
log_path: "{{ zuul.newrev[-2:] }}/{{ zuul.newrev }}/{{ zuul.pipeline }}/{{ zuul.job }}/{{ zuul.build[:7] }}"
|
||||
- include_role:
|
||||
name: generate-log-url
|
||||
|
||||
- name: Create log directories
|
||||
file:
|
||||
|
Loading…
x
Reference in New Issue
Block a user