-
Notifications
You must be signed in to change notification settings - Fork 144
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #392 from IBM/develop
Release zAppBuild 3.4.0
- Loading branch information
Showing
38 changed files
with
1,157 additions
and
227 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
# Releng properties used by languages/CRB.groovy | ||
|
||
# The properties required to build using the CICS Resource Builder tool | ||
# Comma separated list of required build properties for Cicsyml.groovy | ||
crb_requiredBuildProperties=crb_zrbLocation,crb_resourceModelFile | ||
|
||
# | ||
# Absolute path to the CICS Resource Builder utility (zrb) on z/OS | ||
# crb_zrbLocation=/var/crb-1.0.3/cics-resource-builder/bin/zrb | ||
crb_zrbLocation= | ||
|
||
# | ||
# Absolute path to the CICS Resource Builder resource model YAML file on z/OS | ||
# the resource model YAML files can be centrally managed within zAppBuilds build-conf directory | ||
# or any absolute path outside of the build framework. | ||
# We recommend to store the resource model YAML file in its dedicated git repository managed by the | ||
# CICS administration team. | ||
crb_resourceModelFile=${zAppBuildDir}/build-conf/cicsResourceBuilderConfigurations/${application}-model.yaml | ||
|
||
# | ||
# Absolute path to the CICS Resource Builder application constraints YAML file on z/OS | ||
# the application constraints YAML files can be centrally managed within zAppBuilds build-conf directory | ||
# or any absolute path outside of the build framework. | ||
# The CICS Resource Builder application constraints YAML file is an OPTIONAL file for the CICS Resource Builder. | ||
# We recommend to store the application constraints YAML file in its dedicated git repository managed by the | ||
# CICS administration team. | ||
crb_applicationConstraintsFile=${zAppBuildDir}/build-conf/cicsResourceBuilderConfigurations/${application}-constraints.yaml |
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
14 changes: 14 additions & 0 deletions
14
build-conf/cicsResourceBuilderConfigurations/MortgageApplication-constraints.yaml
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,14 @@ | ||
--- | ||
schemaVersion: resourceModel/1.0 | ||
application: | ||
name: MortgageApplication | ||
description: MortgageApplication constraints | ||
constraints: | ||
- id: program-name-prefix | ||
prefix: EPS | ||
- id: mapset-name-prefix | ||
prefix: EPSM | ||
- id: transaction-name-prefix | ||
prefix: EPS | ||
- id: resource-name-prefix | ||
prefix: EPS |
92 changes: 92 additions & 0 deletions
92
build-conf/cicsResourceBuilderConfigurations/MortgageApplication-model.yaml
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,92 @@ | ||
--- | ||
schemaVersion: resourceModel/1.0 | ||
resourceModel: | ||
target: cicsts-6.1.0 | ||
defines: | ||
- type: mapset | ||
attributes: | ||
public: | ||
name: | ||
required: true | ||
constraintId: mapset-name-prefix | ||
group: | ||
required: true | ||
constraintId: resource-name-prefix | ||
private: | ||
resident: NO | ||
usage: NORMAL | ||
uselpacopy: NO | ||
status: ENABLED | ||
- type: program | ||
attributes: | ||
public: | ||
name: | ||
required: true | ||
constraintId: program-name-prefix | ||
group: | ||
required: true | ||
constraintId: resource-name-prefix | ||
datalocation: | ||
required: true | ||
language: | ||
required: true | ||
execkey: | ||
required: true | ||
concurrency: | ||
required: true | ||
dynamic: | ||
required: true | ||
executionset: | ||
required: true | ||
private: | ||
usage: NORMAL | ||
uselpacopy: NO | ||
status: ENABLED | ||
reload: NO | ||
resident: NO | ||
cedf: YES | ||
api: CICSAPI | ||
jvm: NO | ||
- type: transaction | ||
attributes: | ||
public: | ||
name: | ||
required: true | ||
constraintId: transaction-name-prefix | ||
group: | ||
required: true | ||
constraintId: resource-name-prefix | ||
storageclear: | ||
required: true | ||
program: | ||
required: true | ||
constraintId: program-name-prefix | ||
private: | ||
tranclass: DFHTCL00 | ||
status: ENABLED | ||
twasize: 0 | ||
profile: DFHCICST | ||
taskdataloc: ANY | ||
taskdatakey: USER | ||
runaway: SYSTEM | ||
shutdown: DISABLED | ||
isolate: YES | ||
dynamic: NO | ||
routable: NO | ||
priority: 1 | ||
dtimout: NO | ||
restart: NO | ||
spurge: YES | ||
tpurge: YES | ||
dump: YES | ||
trace: YES | ||
confdata: NO | ||
otstimeout: NO | ||
action: BACKOUT | ||
wait: YES | ||
waittime: 0,0,0 | ||
ressec: NO | ||
cmdsec: NO | ||
|
||
|
||
|
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,20 @@ | ||
# Releng properties used by language/zCEE3.groovy | ||
|
||
# | ||
# Comma separated list of required build properties for zCEE3.groovy | ||
zcee3_requiredBuildProperties=zcee3_shellEnvironment, zcee3_gradlePath, zcee3_gradle_JAVA_OPTS | ||
|
||
# | ||
# Shell environment used to run the gradle command | ||
zcee3_shellEnvironment=bash | ||
|
||
# | ||
# Absolute path to gradle executable on z/OS UNIX System Services | ||
# for instance: /var/gradle/gradle-7.6/bin/gradle | ||
zcee3_gradlePath= | ||
|
||
# | ||
# JAVA Options used with gradle | ||
# for instance: zCEE_gradle_JAVA_OPTS=-Xmx512m -XX:MaxMetaspaceSize=256m -Dfile.encoding=UTF-8 | ||
zcee3_gradle_JAVA_OPTS=-Dfile.encoding=UTF-8 | ||
|
Oops, something went wrong.