<div dir="ltr"><div dir="ltr"><div dir="ltr"><div dir="ltr">Good day,<div><br></div><div>I want to get the list of changes that are being processed in the current build.</div><div><br></div><div>For the builder that I configured, it runs for around 2 hours, and collapses the requests in that time frame to the next build. The builder is triggered by a SingleBranchScheduler that queries perforce.</div><div><br></div><div>What I am trying to do is to gather the list of CLs into a property like:</div><div><br></div><div><font face="monospace, monospace">@renderer<br></font></div><div><div><font face="monospace, monospace">def get_cl_properties_from_changes(props):</font></div><div><font face="monospace, monospace">    cl_list = yield [ change.revision for change in props.build.allChanges() ]</font></div><div><font face="monospace, monospace">    return {</font></div><div><font face="monospace, monospace">        'cl_list': cl_list</font></div><div><font face="monospace, monospace">    }</font></div></div><div><font face="monospace, monospace"><br></font></div><div><font face="arial, helvetica, sans-serif">Which is referenced by a SetProperties() step. For some reason, the function always only returns the latest changelist.</font></div><div><font face="arial, helvetica, sans-serif"><br></font></div><div><font face="arial, helvetica, sans-serif">Does anyone know how to get this info?</font></div><div><font face="arial, helvetica, sans-serif"><br></font></div><div><font face="arial, helvetica, sans-serif">Thanks,</font></div><div><font face="arial, helvetica, sans-serif">Jar</font></div></div></div></div></div>