| << Back to previous view |
[QB-1016] Option to create empty "successful" or "failed" file in build's storage directory after build
|
|
| Status: | Closed |
| Project: | QuickBuild |
| Component/s: | None |
| Affects Version/s: | 3.1.54 |
| Fix Version/s: | None |
| Type: | Improvement | Priority: | Minor |
| Reporter: | Jan Koprowski | Assigned To: | Robin Shen |
| Resolution: | Fixed | Votes: | 0 |
| Remaining Estimate: | Unknown | Time Spent: | Unknown |
| Original Estimate: | Unknown | ||
| Description |
|
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. |
| Comments |
| Comment by 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(); |