You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Trying to run the build script with the mortgage application, but we get a link-edit job fail because the compile and cobol compiles have not run. These are marked in the buildOrder in build.groovy as ...
// build programs by invoking the appropriate build script
def buildOrder = ["BMSProcessing", "Compile", "CobolCompile", "LinkEdit"]
// optionally execute IMS MFS builds
if (properties.BUILD_MFS.toBoolean())
buildOrder << "MFSGENUtility"
println("** Invoking build scripts according to build order: ${buildOrder[1..-1].join(', ')}")
buildOrder.each { script ->
// Use the ScriptMappings class to get the files mapped to the build script
def buildFiles = ScriptMappings.getMappedList(script, buildList)
buildFiles.each { file ->
runScript(new File("${script}.groovy"), ["file":file])
processCounter++
...but as you can see from the output they are not running and it's doing the BMSProcessing and then the LinkEdit. The first line in the Compile.groovy is a println but this doesn't come out, so what could be stopping them?
Output from the script is below...
_`** Searching for last successful build commit hash for build group MortgageApplication
Could not locate last successful build commit hash for build group MortgageApplication. Building all files.
** Scan the build list to collect dependency data
Scanning bms/epsmlis.bms
Scanning bms/epsmort.bms
Scanning cobol/epsmpmt.cbl
Scanning cobol/epsmlist.cbl
Scanning cobol/epsnbrvl.cbl
Scanning cobol_cics/epscsmrd.cbl
Scanning cobol_cics/epscsmrt.cbl
Scanning cobol_cics_db2/epscmort.cbl
Scanning link/epsmlist.lnk
Scanning mfs/dfsiv1.mfs
Scanning copybook/epsmortf.cpy
Scanning copybook/epsmtcom.cpy
Scanning copybook/epsmtinp.cpy
Scanning copybook/epsmtout.cpy
Scanning copybook/epsnbrpm.cpy
Scanning copybook/epspdata.cpy
** Storing remaining 16 logical files in repository collection 'MortgageApplication'
HTTP/1.1 200 OK
** Invoking build scripts according to build order: Compile, CobolCompile, LinkEdit, MFSGENUtility
Building bms/epsmlis.bms using BMSProcessing.groovy script
Copying /u/home/DEVOPS/build/mainframe-code/MortgageApplication//bms/epsmlis.bms to DEVOPS.BMS(EPSMLIS)
Processing BMS Map bms/epsmlis.bms
Building bms/epsmort.bms using BMSProcessing.groovy script
Copying /u/home/DEVOPS/build/mainframe-code/MortgageApplication//bms/epsmort.bms to DEVOPS.BMS(EPSMORT)
Processing BMS Map bms/epsmort.bms
Building link/epsmlist.lnk using LinkEdit.groovy script
Copying /u/home/DEVOPS/build/mainframe-code/MortgageApplication//link/epsmlist.lnk to DEVOPS.LINK(EPSMLIST)
Link editing link file link/epsmlist.lnk
*! The return code (12) for link/epsmlist.lnk exceeded the maximum return code allowed (0)`_
The text was updated successfully, but these errors were encountered:
Trying to run the build script with the mortgage application, but we get a link-edit job fail because the compile and cobol compiles have not run. These are marked in the buildOrder in build.groovy as ...
// build programs by invoking the appropriate build script
def buildOrder = ["BMSProcessing", "Compile", "CobolCompile", "LinkEdit"]
// optionally execute IMS MFS builds
if (properties.BUILD_MFS.toBoolean())
buildOrder << "MFSGENUtility"
...but as you can see from the output they are not running and it's doing the BMSProcessing and then the LinkEdit. The first line in the Compile.groovy is a println but this doesn't come out, so what could be stopping them?
Output from the script is below...
_`** Searching for last successful build commit hash for build group MortgageApplication
Could not locate last successful build commit hash for build group MortgageApplication. Building all files.
** Scan the build list to collect dependency data
Scanning bms/epsmlis.bms
Scanning bms/epsmort.bms
Scanning cobol/epsmpmt.cbl
Scanning cobol/epsmlist.cbl
Scanning cobol/epsnbrvl.cbl
Scanning cobol_cics/epscsmrd.cbl
Scanning cobol_cics/epscsmrt.cbl
Scanning cobol_cics_db2/epscmort.cbl
Scanning link/epsmlist.lnk
Scanning mfs/dfsiv1.mfs
Scanning copybook/epsmortf.cpy
Scanning copybook/epsmtcom.cpy
Scanning copybook/epsmtinp.cpy
Scanning copybook/epsmtout.cpy
Scanning copybook/epsnbrpm.cpy
Scanning copybook/epspdata.cpy
** Storing remaining 16 logical files in repository collection 'MortgageApplication'
HTTP/1.1 200 OK
** Invoking build scripts according to build order: Compile, CobolCompile, LinkEdit, MFSGENUtility
Copying /u/home/DEVOPS/build/mainframe-code/MortgageApplication//bms/epsmlis.bms to DEVOPS.BMS(EPSMLIS)
Processing BMS Map bms/epsmlis.bms
Copying /u/home/DEVOPS/build/mainframe-code/MortgageApplication//bms/epsmort.bms to DEVOPS.BMS(EPSMORT)
Processing BMS Map bms/epsmort.bms
Copying /u/home/DEVOPS/build/mainframe-code/MortgageApplication//link/epsmlist.lnk to DEVOPS.LINK(EPSMLIST)
Link editing link file link/epsmlist.lnk
*! The return code (12) for link/epsmlist.lnk exceeded the maximum return code allowed (0)`_
The text was updated successfully, but these errors were encountered: