Key: |
QB-4027
|
Type: |
Improvement
|
Status: |
Closed
|
Resolution: |
Fixed
|
Priority: |
Major
|
Assignee: |
Robin Shen
|
Reporter: |
Phong Trinh
|
Votes: |
0
|
Watchers: |
0
|
If you were logged in you would be able to see more operations.
|
|
|
QuickBuild
Created: 21/Sep/23 03:38 PM
Updated: 08/Jan/24 11:18 AM
|
|
Component/s: |
None
|
Affects Version/s: |
12.0.19
|
Fix Version/s: |
14.0.0
|
|
Original Estimate:
|
Unknown
|
Remaining Estimate:
|
Unknown
|
Time Spent:
|
Unknown
|
File Attachments:
|
None
|
Image Attachments:
|
|
|
Hi Robin/PMEASE
I created a customized dashboard and added a gadget to display last 10 builds of a specific configuration as follow:
groovy:
import com.pmease.quickbuild.*;
def config = system.configurationManager.get("root/DevTools/Email Notifications")
def builds = system.buildManager.getBuilds(config)
builds.sort{a,b -> b.endDate.compareTo(a.endDate)}
builds=builds.take(10)
builds
It displays configuration and build column only. Is it possible to add addtional columns such as Id, Version, Master Node, Begin Date, Duration, Trigger By which is similar to 'Recent Builds'?
Thank you in advance,
ptrinh
|
Description
|
Hi Robin/PMEASE
I created a customized dashboard and added a gadget to display last 10 builds of a specific configuration as follow:
groovy:
import com.pmease.quickbuild.*;
def config = system.configurationManager.get("root/DevTools/Email Notifications")
def builds = system.buildManager.getBuilds(config)
builds.sort{a,b -> b.endDate.compareTo(a.endDate)}
builds=builds.take(10)
builds
It displays configuration and build column only. Is it possible to add addtional columns such as Id, Version, Master Node, Begin Date, Duration, Trigger By which is similar to 'Recent Builds'?
Thank you in advance,
ptrinh
|
Show » |
No work has yet been logged on this issue.
|
|