Merge "add useful debug info for change and builds"

This commit is contained in:
Zuul 2020-01-16 23:14:56 +00:00 committed by Gerrit Code Review
commit 2ba2e5c4f9
2 changed files with 8 additions and 0 deletions

View File

@ -3,6 +3,10 @@
set_fact:
artg_release: "{{ artg_change.branch | replace('stable/', '') }}"
- name: print out the release name
debug:
var: artg_release
- name: Set DLRN distro (legacy distgit branch naming)
set_fact:
artg_distro: "rpm-{{ artg_release }}"

View File

@ -211,6 +211,10 @@
artg_change_list: "{{ artg_change_list|union(zuul_change_list|default([])) }}"
cacheable: true
- name: Print out the change list
debug:
var: artg_change_list
- name: Clone and build the specific DLRN projects
include: dlrn-build.yml artg_change={{ item }}
with_items: '{{ artg_change_list|default([]) }}'