-
Notifications
You must be signed in to change notification settings - Fork 120
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add
includeBuildNumberInTargetPath
configuration parameter (#169)
* Add parameter appendSrcNumberToTarget * Fix field name for appendSrcNumberToTarget * Unit test for parameter appendSrcNumberToTarget * Make help visible in freestyle project * Change parameter name to includeBuildNumberInTargetPath + update unit test * Update parameter name --------- Co-authored-by: Mark Waite <[email protected]>
- Loading branch information
1 parent
56353cb
commit de867d7
Showing
9 changed files
with
92 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
7 changes: 7 additions & 0 deletions
7
...sources/hudson/plugins/copyartifact/CopyArtifact/help-includeBuildNumberInTargetPath.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
<div> | ||
Include build number in target path. Default is false. | ||
<p> | ||
When true, the build number of the source project will be included in the target path. | ||
This is particularly useful when the selector is specific and the value is a permalink, e.g. lastSuccessfulBuild. | ||
</p> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,23 @@ | ||
<div> | ||
Select "Flatten directories" to ignore the directory structure of the artifacts | ||
<p> | ||
Select "<strong>Flatten directories</strong>" to ignore the directory structure of the artifacts | ||
in the source project and copy all matching artifacts directly into the specified | ||
target directory. By default the artifacts are copied in the same directory | ||
structure as the source project. | ||
<p/> | ||
Select "Optional" to allow this build to continue even if no build is found | ||
</p> | ||
<p> | ||
Select "<strong>Optional</strong>" to allow this build to continue even if no build is found | ||
matching the "Which build" condition selected above, the build's workspace does | ||
not exist or is inaccessible, or no artifacts are found matching the specified | ||
pattern. By default this build step fails the build if no artifacts are copied. | ||
<p/> | ||
Select "Fingerprint Artifacts" to automatically fingerprint all artifacts | ||
</p> | ||
<p> | ||
Select "<strong>Fingerprint Artifacts</strong>" to automatically fingerprint all artifacts | ||
that are copied as part of this build step. | ||
</p> | ||
<p> | ||
Select "<strong>Include Build Number</strong>" to include the source build number in the target path. | ||
When true, the build number of the source project will be included in the target path. | ||
This is particularly useful when the selector is specific and the value is a permalink, e.g. lastSuccessfulBuild. | ||
</p> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters