History | Log In     View a printable version of the current page.  
Issue Details (XML | Word | Printable)

Key: QB-1016
Type: Improvement Improvement
Status: Closed Closed
Resolution: Fixed
Priority: Minor Minor
Assignee: Robin Shen
Reporter: Jan Koprowski
Votes: 0
Watchers: 0
Operations

If you were logged in you would be able to see more operations.
QuickBuild

Option to create empty "successful" or "failed" file in build's storage directory after build

Created: 18/Aug/11 04:12 PM   Updated: 27/Dec/12 01:35 PM
Component/s: None
Affects Version/s: 3.1.54
Fix Version/s: None

Original Estimate: Unknown Remaining Estimate: Unknown Time Spent: Unknown


 Description  « Hide
IMHO it is nice "standard" from other build systems to create empty file called "failed" when build fail and "successed" when build finished properly in storage directory - after build.
Option to turn such behavior on as plugin or option Settings panel will be nice feature.

 All   Comments   Work Log   Change History      Sort Order:
Robin Shen [18/Aug/11 11:43 PM]
This can be easily achieved with some scripting like below in post-build script of configuration advanced setting:
groovy:
new File(configuration.workspaceDir, "build_status.txt").text = build.status.name();