-
Notifications
You must be signed in to change notification settings - Fork 134
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Enhance PackageBuildOutputs sample (#100)
* externalize copymodes and allow packaging of additional build logs * Update readme * implements #97 to mask artifactory password * Cli option -prop marked as deprecated
- Loading branch information
1 parent
d60fc8c
commit 1f3aa16
Showing
3 changed files
with
197 additions
and
58 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
21 changes: 21 additions & 0 deletions
21
Pipeline/PackageBuildOutputs/packageBuildOutputs.properties
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,21 @@ | ||
######################################################################## | ||
### The following properties are configure the packaging step | ||
######################################################################## | ||
|
||
# required mapping of last level dataset qualifier to DBB CopyToFS CopyMode | ||
# DBB supported copy modes are documented at | ||
# https://www.ibm.com/docs/api/v1/content/SS6T76_1.1.0/javadoc/com/ibm/dbb/build/DBBConstants.CopyMode.html | ||
copyModeMap = ["COPYBOOK": "TEXT", "COPY": "TEXT", "DBRM": "BINARY", "LOAD": "LOAD"] | ||
|
||
# Comma-separated list of deployTypes to limit the scope of the tar | ||
# file to a subset of the build outputs. (Optional) | ||
# Please not that the cli option `deployTypes` overwrites this setting | ||
# Sample: deployTypesFilter=CICSLOAD,BATCHLOAD | ||
# | ||
# deployTypesFilter= | ||
|
||
# Comma-separated list of files/patterns from the USS build workspace. (Optional) | ||
# Please not that the cli option `includeLogs` overwrites this setting | ||
# Sample: includeLogs = *.log,*.xml | ||
# | ||
# includeLogs = |