-
Notifications
You must be signed in to change notification settings - Fork 134
/
Copy pathtestGenericWrapper-zowe.log
5678 lines (5511 loc) · 301 KB
/
testGenericWrapper-zowe.log
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
testGenericWrapper.sh: [INFO] Running test script using zowe.
testGenericWrapper.sh: [INFO] Reset workspace folder /u/dbehm/backendWorkspace.
testGenericWrapper.sh: [COMMAND] zowe zos-uss issue ssh "rm -Rf /u/dbehm/backendWorkspace"
$ rm -Rf /u/dbehm/backendWorkspace
testGenericWrapper.sh: [COMMAND] zowe zos-uss issue ssh "mkdir /u/dbehm/backendWorkspace"
$ mkdir /u/dbehm/backendWorkspace
testGenericWrapper.sh: Reset dbb collections in File Metadatastore.
testGenericWrapper.sh: [COMMAND] zowe zos-uss issue ssh "dbb collection list --type file"
$ dbb collection list --type file
IBM Dependency Based Build 2.0.1
COLLECTIONS
MortgageApplication-242-mergeMQ
MortgageApplication-242-mergeMQ-outputs
MortgageApplication-242_preMerge
MortgageApplication-242_preMerge-outputs
MortgageApplication-zAppBuildTesting
MortgageApplication-zAppBuildTesting-outputs
MortgageApplication-refactor_reporting_capabilities
MortgageApplication-refactor_reporting_capabilities-outputs
MortgageApplication
MortgageApplication-outputs
MortgageApplication-develop
MortgageApplication-develop-outputs
MortgageApplication-main
MortgageApplication-main-outputs
MortgageApplication-Development
MortgageApplication-Development-outputs
MortgageApplication-master
MortgageApplication-master-outputs
retirementCalculator-dbb20
retirementCalculator-dbb20-outputs
MortgageApplication-heads/rel-1.0.0
MortgageApplication-heads/rel-1.0.0-outputs
MortgageApplication-release/rel-1.0.0
MortgageApplication-release/rel-1.0.0-outputs
MortgageApplication-feature/setmainbuildbranch
MortgageApplication-implementAI/myFeatureImpl
MortgageApplication-implementAI/myFeatureImpl-outputs
MortgageApplication-feature/setmainbuildbranch-outputs
MortgageApplication-hotfix/rel-1.0.0/myfix
MortgageApplication-hotfix/rel-1.0.0/myfix-outputs
MortgageApplication-epic/implementAI
MortgageApplication-epic/implementAI-outputs
testGenericWrapper.sh: [COMMAND] zowe zos-uss issue ssh "dbb collection delete MortgageApplication-hotfix/rel-1.0.0/myfix --type file"
$ dbb collection delete MortgageApplication-hotfix/rel-1.0.0/myfix --type fil<tgageApplication-hotfix/rel-1.0.0/myfix --type file
Successfully deleted collection "MortgageApplication-hotfix/rel-1.0.0/myfix"
testGenericWrapper.sh: [COMMAND] zowe zos-uss issue ssh "dbb collection delete MortgageApplication-hotfix/rel-1.0.0/myfix-outputs --type file"
$ dbb collection delete MortgageApplication-hotfix/rel-1.0.0/myfix-outputs --<tgageApplication-hotfix/rel-1.0.0/myfix-outputs --t ype file
Successfully deleted collection "MortgageApplication-hotfix/rel-1.0.0/myfix-outputs"
testGenericWrapper.sh: [COMMAND] zowe zos-uss issue ssh "dbb collection delete MortgageApplication-feature/setmainbuildbranch --type file"
$ dbb collection delete MortgageApplication-feature/setmainbuildbranch --type<tgageApplication-feature/setmainbuildbranch --type file
Successfully deleted collection "MortgageApplication-feature/setmainbuildbranch"
testGenericWrapper.sh: [COMMAND] zowe zos-uss issue ssh "dbb collection delete MortgageApplication-feature/setmainbuildbranch-outputs --type file"
$ dbb collection delete MortgageApplication-feature/setmainbuildbranch-output<tgageApplication-feature/setmainbuildbranch-outputs --type file
Successfully deleted collection "MortgageApplication-feature/setmainbuildbranch-outputs"
testGenericWrapper.sh: [COMMAND] zowe zos-uss issue ssh "dbb collection delete MortgageApplication-epic/implementAI --type file"
$ dbb collection delete MortgageApplication-epic/implementAI --type file
Successfully deleted collection "MortgageApplication-epic/implementAI"
testGenericWrapper.sh: [COMMAND] zowe zos-uss issue ssh "dbb collection delete MortgageApplication-epic/implementAI-outputs --type file"
$ dbb collection delete MortgageApplication-epic/implementAI-outputs --type f<tgageApplication-epic/implementAI-outputs --type fi le
Successfully deleted collection "MortgageApplication-epic/implementAI-outputs"
testGenericWrapper.sh: [COMMAND] zowe zos-uss issue ssh "dbb build-group delete MortgageApplication-hotfix/rel-1.0.0/myfix --type file"
$ dbb build-group delete MortgageApplication-hotfix/rel-1.0.0/myfix --type fi<rtgageApplication-hotfix/rel-1.0.0/myfix --type fil e
Successfully deleted build group "MortgageApplication-hotfix/rel-1.0.0/myfix"
testGenericWrapper.sh: [COMMAND] zowe zos-uss issue ssh "dbb build-group delete MortgageApplication-feature/setmainbuildbranch --type file"
$ dbb build-group delete MortgageApplication-feature/setmainbuildbranch --typ<rtgageApplication-feature/setmainbuildbranch --type file
Successfully deleted build group "MortgageApplication-feature/setmainbuildbranch"
testGenericWrapper.sh: [COMMAND] zowe zos-uss issue ssh "dbb build-group delete MortgageApplication-epic/implementAI --type file"
$ dbb build-group delete MortgageApplication-epic/implementAI --type file
Successfully deleted build group "MortgageApplication-epic/implementAI"
testGenericWrapper.sh: [COMMAND] zowe zos-uss issue ssh "dbb collection list --type file"
$ dbb collection list --type file
IBM Dependency Based Build 2.0.1
COLLECTIONS
MortgageApplication-242-mergeMQ
MortgageApplication-242-mergeMQ-outputs
MortgageApplication-242_preMerge
MortgageApplication-242_preMerge-outputs
MortgageApplication-zAppBuildTesting
MortgageApplication-zAppBuildTesting-outputs
MortgageApplication-refactor_reporting_capabilities
MortgageApplication-refactor_reporting_capabilities-outputs
MortgageApplication
MortgageApplication-outputs
MortgageApplication-develop
MortgageApplication-develop-outputs
MortgageApplication-main
MortgageApplication-main-outputs
MortgageApplication-Development
MortgageApplication-Development-outputs
MortgageApplication-master
MortgageApplication-master-outputs
retirementCalculator-dbb20
retirementCalculator-dbb20-outputs
MortgageApplication-heads/rel-1.0.0
MortgageApplication-heads/rel-1.0.0-outputs
MortgageApplication-release/rel-1.0.0
MortgageApplication-release/rel-1.0.0-outputs
MortgageApplication-implementAI/myFeatureImpl
MortgageApplication-implementAI/myFeatureImpl-outputs
rc=0
testGenericWrapper.sh: [TEST] Executing test scenario testMortgageApplication-Main-Bld-Build-0.
cloneApplicationRepository
-------------
testGenericWrapper.sh: [COMMAND] zowe zos-uss issue ssh "gitClone.sh -w /u/dbehm/backendWorkspace/MortApp/main/build-0 -r https://github.com/dennis-behm/MortgageApplication.git -b main"
$ gitClone.sh -w /u/dbehm/backendWorkspace/MortApp/main/build-0 -r https://gi<ackendWorkspace/MortApp/main/build-0 -r https://git hub.com/dennis-behm/Mortg<in/build-0 -r https://github.com/dennis-behm/Mortga geApplication.git -b main
gitClone.sh: [INFO] Git Clone Wrapper. Version=1.1.0
gitClone.sh: [INFO] **************************************************************
gitClone.sh: [INFO] ** Start Git Clone on HOST/USER: z/OS ZT01 04.00 02 8561/BPXROOT
gitClone.sh: [INFO] ** Repo: https://github.com/dennis-behm/MortgageApplication.git
gitClone.sh: [INFO] ** WorkDir: /u/dbehm/backendWorkspace/MortApp/main/build-0
gitClone.sh: [INFO] ** GitDir: MortgageApplication
gitClone.sh: [INFO] ** Branch: main -> main
gitClone.sh: [INFO] **************************************************************
gitClone.sh: [INFO] Preforming Git Clone of Repo https://github.com/dennis-behm/MortgageApplication.git, Branch main to /u/dbehm/backendWorkspace/MortApp/main/build-0
Cloning into 'MortgageApplication'...
remote: Enumerating objects: 645, done.[K
remote: Counting objects: 0% (1/645)[Kremote: Counting objects: 1% (7/645)[Kremote: Counting objects: 2% (13/645)[Kremote: Counting objects: 3% (20/645)[Kremote: Counting objects: 4% (26/645)[Kremote: Counting objects: 5% (33/645)[Kremote: Counting objects: 6% (39/645)[Kremote: Counting objects: 7% (46/645)[Kremote: Counting objects: 8% (52/645)[Kremote: Counting objects: 9% (59/645)[Kremote: Counting objects: 10% (65/645)[Kremote: Counting objects: 11% (71/645)[Kremote: Counting objects: 12% (78/645)[Kremote: Counting objects: 13% (84/645)[Kremote: Counting objects: 14% (91/645)[Kremote: Counting objects: 15% (97/645)[Kremote: Counting objects: 16% (104/645)[Kremote: Counting objects: 17% (110/645)[Kremote: Counting objects: 18% (117/645)[Kremote: Counting objects: 19% (123/645)[Kremote: Counting objects: 20% (129/645)[Kremote: Counting objects: 21% (136/645)[Kremote: Counting objects: 22% (142/645)[Kremote: Counting objects: 23% (149/645)[Kremote: Counting objects: 24% (155/645)[Kremote: Counting objects: 25% (162/645)[Kremote: Counting objects: 26% (168/645)[Kremote: Counting objects: 27% (175/645)[Kremote: Counting objects: 28% (181/645)[Kremote: Counting objects: 29% (188/645)[Kremote: Counting objects: 30% (194/645)[Kremote: Counting objects: 31% (200/645)[Kremote: Counting objects: 32% (207/645)[Kremote: Counting objects: 33% (213/645)[Kremote: Counting objects: 34% (220/645)[Kremote: Counting objects: 35% (226/645)[Kremote: Counting objects: 36% (233/645)[Kremote: Counting objects: 37% (239/645)[Kremote: Counting objects: 38% (246/645)[Kremote: Counting objects: 39% (252/645)[Kremote: Counting objects: 40% (258/645)[Kremote: Counting objects: 41% (265/645)[Kremote: Counting objects: 42% (271/645)[Kremote: Counting objects: 43% (278/645)[Kremote: Counting objects: 44% (284/645)[Kremote: Counting objects: 45% (291/645)[Kremote: Counting objects: 46% (297/645)[Kremote: Counting objects: 47% (304/645)[Kremote: Counting objects: 48% (310/645)[Kremote: Counting objects: 49% (317/645)[Kremote: Counting objects: 50% (323/645)[Kremote: Counting objects: 51% (329/645)[Kremote: Counting objects: 52% (336/645)[Kremote: Counting objects: 53% (342/645)[Kremote: Counting objects: 54% (349/645)[Kremote: Counting objects: 55% (355/645)[Kremote: Counting objects: 56% (362/645)[Kremote: Counting objects: 57% (368/645)[Kremote: Counting objects: 58% (375/645)[Kremote: Counting objects: 59% (381/645)[Kremote: Counting objects: 60% (387/645)[Kremote: Counting objects: 61% (394/645)[Kremote: Counting objects: 62% (400/645)[Kremote: Counting objects: 63% (407/645)[Kremote: Counting objects: 64% (413/645)[Kremote: Counting objects: 65% (420/645)[Kremote: Counting objects: 66% (426/645)[Kremote: Counting objects: 67% (433/645)[Kremote: Counting objects: 68% (439/645)[Kremote: Counting objects: 69% (446/645)[Kremote: Counting objects: 70% (452/645)[Kremote: Counting objects: 71% (458/645)[Kremote: Counting objects: 72% (465/645)[Kremote: Counting objects: 73% (471/645)[Kremote: Counting objects: 74% (478/645)[Kremote: Counting objects: 75% (484/645)[Kremote: Counting objects: 76% (491/645)[Kremote: Counting objects: 77% (497/645)[Kremote: Counting objects: 78% (504/645)[Kremote: Counting objects: 79% (510/645)[Kremote: Counting objects: 80% (516/645)[Kremote: Counting objects: 81% (523/645)[Kremote: Counting objects: 82% (529/645)[Kremote: Counting objects: 83% (536/645)[Kremote: Counting objects: 84% (542/645)[Kremote: Counting objects: 85% (549/645)[Kremote: Counting objects: 86% (555/645)[Kremote: Counting objects: 87% (562/645)[Kremote: Counting objects: 88% (568/645)[Kremote: Counting objects: 89% (575/645)[Kremote: Counting objects: 90% (581/645)[Kremote: Counting objects: 91% (587/645)[Kremote: Counting objects: 92% (594/645)[Kremote: Counting objects: 93% (600/645)[Kremote: Counting objects: 94% (607/645)[Kremote: Counting objects: 95% (613/645)[Kremote: Counting objects: 96% (620/645)[Kremote: Counting objects: 97% (626/645)[Kremote: Counting objects: 98% (633/645)[Kremote: Counting objects: 99% (639/645)[Kremote: Counting objects: 100% (645/645)[Kremote: Counting objects: 100% (645/645), done.[K
remote: Compressing objects: 0% (1/237)[Kremote: Compressing objects: 1% (3/237)[Kremote: Compressing objects: 2% (5/237)[Kremote: Compressing objects: 3% (8/237)[Kremote: Compressing objects: 4% (10/237)[Kremote: Compressing objects: 5% (12/237)[Kremote: Compressing objects: 6% (15/237)[Kremote: Compressing objects: 7% (17/237)[Kremote: Compressing objects: 8% (19/237)[Kremote: Compressing objects: 9% (22/237)[Kremote: Compressing objects: 10% (24/237)[Kremote: Compressing objects: 11% (27/237)[Kremote: Compressing objects: 12% (29/237)[Kremote: Compressing objects: 13% (31/237)[Kremote: Compressing objects: 14% (34/237)[Kremote: Compressing objects: 15% (36/237)[Kremote: Compressing objects: 16% (38/237)[Kremote: Compressing objects: 17% (41/237)[Kremote: Compressing objects: 18% (43/237)[Kremote: Compressing objects: 19% (46/237)[Kremote: Compressing objects: 20% (48/237)[Kremote: Compressing objects: 21% (50/237)[Kremote: Compressing objects: 22% (53/237)[Kremote: Compressing objects: 23% (55/237)[Kremote: Compressing objects: 24% (57/237)[Kremote: Compressing objects: 25% (60/237)[Kremote: Compressing objects: 26% (62/237)[Kremote: Compressing objects: 27% (64/237)[Kremote: Compressing objects: 28% (67/237)[Kremote: Compressing objects: 29% (69/237)[Kremote: Compressing objects: 30% (72/237)[Kremote: Compressing objects: 31% (74/237)[Kremote: Compressing objects: 32% (76/237)[Kremote: Compressing objects: 33% (79/237)[Kremote: Compressing objects: 34% (81/237)[Kremote: Compressing objects: 35% (83/237)[Kremote: Compressing objects: 36% (86/237)[Kremote: Compressing objects: 37% (88/237)[Kremote: Compressing objects: 38% (91/237)[Kremote: Compressing objects: 39% (93/237)[Kremote: Compressing objects: 40% (95/237)[Kremote: Compressing objects: 41% (98/237)[Kremote: Compressing objects: 42% (100/237)[Kremote: Compressing objects: 43% (102/237)[Kremote: Compressing objects: 44% (105/237)[Kremote: Compressing objects: 45% (107/237)[Kremote: Compressing objects: 46% (110/237)[Kremote: Compressing objects: 47% (112/237)[Kremote: Compressing objects: 48% (114/237)[Kremote: Compressing objects: 49% (117/237)[Kremote: Compressing objects: 50% (119/237)[Kremote: Compressing objects: 51% (121/237)[Kremote: Compressing objects: 52% (124/237)[Kremote: Compressing objects: 53% (126/237)[Kremote: Compressing objects: 54% (128/237)[Kremote: Compressing objects: 55% (131/237)[Kremote: Compressing objects: 56% (133/237)[Kremote: Compressing objects: 57% (136/237)[Kremote: Compressing objects: 58% (138/237)[Kremote: Compressing objects: 59% (140/237)[Kremote: Compressing objects: 60% (143/237)[Kremote: Compressing objects: 61% (145/237)[Kremote: Compressing objects: 62% (147/237)[Kremote: Compressing objects: 63% (150/237)[Kremote: Compressing objects: 64% (152/237)[Kremote: Compressing objects: 65% (155/237)[Kremote: Compressing objects: 66% (157/237)[Kremote: Compressing objects: 67% (159/237)[Kremote: Compressing objects: 68% (162/237)[Kremote: Compressing objects: 69% (164/237)[Kremote: Compressing objects: 70% (166/237)[Kremote: Compressing objects: 71% (169/237)[Kremote: Compressing objects: 72% (171/237)[Kremote: Compressing objects: 73% (174/237)[Kremote: Compressing objects: 74% (176/237)[Kremote: Compressing objects: 75% (178/237)[Kremote: Compressing objects: 76% (181/237)[Kremote: Compressing objects: 77% (183/237)[Kremote: Compressing objects: 78% (185/237)[Kremote: Compressing objects: 79% (188/237)[Kremote: Compressing objects: 80% (190/237)[Kremote: Compressing objects: 81% (192/237)[Kremote: Compressing objects: 82% (195/237)[Kremote: Compressing objects: 83% (197/237)[Kremote: Compressing objects: 84% (200/237)[Kremote: Compressing objects: 85% (202/237)[Kremote: Compressing objects: 86% (204/237)[Kremote: Compressing objects: 87% (207/237)[Kremote: Compressing objects: 88% (209/237)[Kremote: Compressing objects: 89% (211/237)[Kremote: Compressing objects: 90% (214/237)[Kremote: Compressing objects: 91% (216/237)[Kremote: Compressing objects: 92% (219/237)[Kremote: Compressing objects: 93% (221/237)[Kremote: Compressing objects: 94% (223/237)[Kremote: Compressing objects: 95% (226/237)[Kremote: Compressing objects: 96% (228/237)[Kremote: Compressing objects: 97% (230/237)[Kremote: Compressing objects: 98% (233/237)[Kremote: Compressing objects: 99% (235/237)[Kremote: Compressing objects: 100% (237/237)[Kremote: Compressing objects: 100% (237/237), done.[K
Receiving objects: 0% (1/645)Receiving objects: 1% (7/645)Receiving objects: 2% (13/645)Receiving objects: 3% (20/645)Receiving objects: 4% (26/645)Receiving objects: 5% (33/645)Receiving objects: 6% (39/645)Receiving objects: 7% (46/645)Receiving objects: 8% (52/645)Receiving objects: 9% (59/645)Receiving objects: 10% (65/645)Receiving objects: 11% (71/645)Receiving objects: 12% (78/645)Receiving objects: 13% (84/645)Receiving objects: 14% (91/645)Receiving objects: 15% (97/645)Receiving objects: 16% (104/645)Receiving objects: 17% (110/645)Receiving objects: 18% (117/645)Receiving objects: 19% (123/645)Receiving objects: 20% (129/645)Receiving objects: 21% (136/645)Receiving objects: 22% (142/645)Receiving objects: 23% (149/645)Receiving objects: 24% (155/645)Receiving objects: 25% (162/645)Receiving objects: 26% (168/645)Receiving objects: 27% (175/645)Receiving objects: 28% (181/645)Receiving objects: 29% (188/645)Receiving objects: 30% (194/645)Receiving objects: 31% (200/645)Receiving objects: 32% (207/645)Receiving objects: 33% (213/645)Receiving objects: 34% (220/645)Receiving objects: 35% (226/645)Receiving objects: 36% (233/645)Receiving objects: 37% (239/645)Receiving objects: 38% (246/645)Receiving objects: 39% (252/645)Receiving objects: 40% (258/645)Receiving objects: 41% (265/645)Receiving objects: 42% (271/645)Receiving objects: 43% (278/645)Receiving objects: 44% (284/645)Receiving objects: 45% (291/645)Receiving objects: 46% (297/645)Receiving objects: 47% (304/645)Receiving objects: 48% (310/645)Receiving objects: 49% (317/645)Receiving objects: 50% (323/645)Receiving objects: 51% (329/645)Receiving objects: 52% (336/645)Receiving objects: 53% (342/645)Receiving objects: 54% (349/645)Receiving objects: 55% (355/645)Receiving objects: 56% (362/645)Receiving objects: 57% (368/645)Receiving objectsremote: Total 645 (delta 394), reused 645 (delta 394), pack-reused 0[K
: 58% (375/645)Receiving objects: 59% (381/645)Receiving objects: 60% (387/645)Receiving objects: 61% (394/645)Receiving objects: 62% (400/645)Receiving objects: 63% (407/645)Receiving objects: 64% (413/645)Receiving objects: 65% (420/645)Receiving objects: 66% (426/645)Receiving objects: 67% (433/645)Receiving objects: 68% (439/645)Receiving objects: 69% (446/645)Receiving objects: 70% (452/645)Receiving objects: 71% (458/645)Receiving objects: 72% (465/645)Receiving objects: 73% (471/645)Receiving objects: 74% (478/645)Receiving objects: 75% (484/645)Receiving objects: 76% (491/645)Receiving objects: 77% (497/645)Receiving objects: 78% (504/645)Receiving objects: 79% (510/645)Receiving objects: 80% (516/645)Receiving objects: 81% (523/645)Receiving objects: 82% (529/645)Receiving objects: 83% (536/645)Receiving objects: 84% (542/645)Receiving objects: 85% (549/645)Receiving objects: 86% (555/645)Receiving objects: 87% (562/645)Receiving objects: 88% (568/645)Receiving objects: 89% (575/645)Receiving objects: 90% (581/645)Receiving objects: 91% (587/645)Receiving objects: 92% (594/645)Receiving objects: 93% (600/645)Receiving objects: 94% (607/645)Receiving objects: 95% (613/645)Receiving objects: 96% (620/645)Receiving objects: 97% (626/645)Receiving objects: 98% (633/645)Receiving objects: 99% (639/645)Receiving objects: 100% (645/645)Receiving objects: 100% (645/645), 131.26 KiB | 834.00 KiB/s, done.
Resolving deltas: 0% (0/394)Resolving deltas: 1% (4/394)Resolving deltas: 2% (8/394)Resolving deltas: 3% (13/394)Resolving deltas: 4% (18/394)Resolving deltas: 14% (58/394)Resolving deltas: 20% (80/394)Resolving deltas: 26% (103/394)Resolving deltas: 34% (135/394)Resolving deltas: 38% (151/394)Resolving deltas: 39% (155/394)Resolving deltas: 44% (175/394)Resolving deltas: 50% (198/394)Resolving deltas: 52% (205/394)Resolving deltas: 53% (209/394)Resolving deltas: 58% (231/394)Resolving deltas: 59% (233/394)Resolving deltas: 60% (238/394)Resolving deltas: 63% (251/394)Resolving deltas: 64% (253/394)Resolving deltas: 70% (276/394)Resolving deltas: 73% (288/394)Resolving deltas: 75% (297/394)Resolving deltas: 77% (306/394)Resolving deltas: 78% (308/394)Resolving deltas: 79% (314/394)Resolving deltas: 80% (317/394)Resolving deltas: 82% (327/394)Resolving deltas: 83% (328/394)Resolving deltas: 88% (347/394)Resolving deltas: 89% (351/394)Resolving deltas: 90% (357/394)Resolving deltas: 96% (379/394)Resolving deltas: 97% (383/394)Resolving deltas: 98% (389/394)Resolving deltas: 100% (394/394)Resolving deltas: 100% (394/394), done.
gitClone.sh: [INFO] Git Status for MortgageApplication
On branch main
Your branch is up to date with 'origin/main'.
nothing to commit, working tree clean
gitClone.sh: [INFO] Git Show-Ref for MortgageApplication
f7380c46a60e7614539ceb4da6d3aa0dd531a238 refs/heads/main
f7380c46a60e7614539ceb4da6d3aa0dd531a238 refs/remotes/origin/HEAD
a411fc163a07c1e054c08e8c3bc055c8fd713fd2 refs/remotes/origin/epic/implementAI
f7380c46a60e7614539ceb4da6d3aa0dd531a238 refs/remotes/origin/feature/setmainbuildbranch
f3050d7c6d38360eac5980411cd0483a7683adc9 refs/remotes/origin/hotfix/rel-1.0.0/myfix
a411fc163a07c1e054c08e8c3bc055c8fd713fd2 refs/remotes/origin/implementAI/myFeatureImpl
f7380c46a60e7614539ceb4da6d3aa0dd531a238 refs/remotes/origin/main
c276d8fe3db4dce2e4183130a4feb7525bae4dfa refs/remotes/origin/release/rel-1.0.0
0cc39e464cdd6fa7a4a7e9bb1381e25daf757d08 refs/tags/rel-1.0.0
gitClone.sh: [INFO] Clone Repository Complete. rc=0
rc=0
Perform Build
-------------
testGenericWrapper.sh: [COMMAND] zowe zos-uss issue ssh "dbbBuild.sh -w /u/dbehm/backendWorkspace/MortApp/main/build-0 -a MortgageApplication -b main -p build -t '--fullBuild'"
$ dbbBuild.sh -w /u/dbehm/backendWorkspace/MortApp/main/build-0 -a MortgageAp<ackendWorkspace/MortApp/main/build-0 -a MortgageApp lication -b main -p buil<in/build-0 -a MortgageApplication -b main -p build -t '--fullBuild'
dbbBuild.sh: [INFO] DBB Build Wrapper. Version=1.10
dbbBuild.sh: [INFO] **************************************************************
dbbBuild.sh: [INFO] ** Started - DBB Build on HOST/USER: z/OS ZT01 04.00 02 8561/DBEHM
dbbBuild.sh: [INFO] ** Workspace: /u/dbehm/backendWorkspace/MortApp/main/build-0
dbbBuild.sh: [INFO] ** Application: MortgageApplication
dbbBuild.sh: [INFO] ** Branch: main
dbbBuild.sh: [INFO] ** Build Type: --fullBuild
dbbBuild.sh: [INFO] ** HLQ: DBEHM.MORTGAGE.MAIN.BLD
dbbBuild.sh: [INFO] ** AppDir: /u/dbehm/backendWorkspace/MortApp/main/build-0/MortgageApplication
dbbBuild.sh: [INFO] ** LogDir: /u/dbehm/backendWorkspace/MortApp/main/build-0/logs
dbbBuild.sh: [INFO] ** zAppBuild Path: /var/dbb/dbb-zappbuild_300
dbbBuild.sh: [INFO] ** DBB_HOME: /usr/lpp/dbb/v2r0
dbbBuild.sh: [INFO] ** DBB JDBC USER: DBEHM
dbbBuild.sh: [INFO] ** DBB JDBC Pwd File: /var/dbb/config/db2-pwd-file.xml
dbbBuild.sh: [INFO] ** Verbose : No
dbbBuild.sh: [INFO] ** DBB Logger: No
dbbBuild.sh: [INFO] **************************************************************
dbbBuild.sh: [INFO] Invoking the zAppBuild Build Framework.
dbbBuild.sh: [INFO] /usr/lpp/dbb/v2r0/bin/groovyz /var/dbb/dbb-zappbuild_300/build.groovy --workspace /u/dbehm/backendWorkspace/MortApp/main/build-0 --application MortgageApplication --outDir /u/dbehm/backendWorkspace/MortApp/main/build-0/logs --hlq DBEHM.MORTGAGE.MAIN.BLD --id DBEHM --pwFile /var/dbb/config/db2-pwd-file.xml --logEncoding UTF-8 --propFiles /var/dbb/dbb-zappbuild-config/build.properties,/var/dbb/dbb-zappbuild-config/datasets.properties,/var/dbb/dbb-zappbuild-config/buildFolder.properties --fullBuild
** Build start at 20231013.020703.007
** Build output located at /u/dbehm/backendWorkspace/MortApp/main/build-0/logs
** Build result created for BuildGroup:MortgageApplication-main BuildLabel:build.20231013.140703.007
** Loading DBB scanner mapping configuration dbb.scannerMapping
** --fullBuild option selected. Building all programs for application MortgageApplication
** Writing build list file to /u/dbehm/backendWorkspace/MortApp/main/build-0/logs/buildList.txt
** Scanning source code.
WARNING: An illegal reflective access operation has occurred
WARNING: Illegal reflective access by org.codehaus.groovy.vmplugin.v9.Java9 (file:/V2R4/usr/lpp/dbb/v2r0/groovy/lib/groovy-4.0.12.jar) to method sun.nio.fs.UnixFileSystem.getPathMatcher(java.lang.String)
WARNING: Please consider reporting this to the maintainers of org.codehaus.groovy.vmplugin.v9.Java9
WARNING: Use --illegal-access=warn to enable warnings of further illegal reflective access operations
WARNING: All illegal access operations will be denied in a future release
** Populating file level properties from individual artifact properties files.
** Invoking build scripts according to build order: BMS.groovy,Cobol.groovy,LinkEdit.groovy
** Building 2 files mapped to BMS.groovy script
*** (1/2) Building file MortgageApplication/bms/epsmlis.bms
*** (2/2) Building file MortgageApplication/bms/epsmort.bms
** Building 6 files mapped to Cobol.groovy script
*** (1/6) Building file MortgageApplication/cobol/epsnbrvl.cbl
*** (2/6) Building file MortgageApplication/cobol/epscmort.cbl
*** (3/6) Building file MortgageApplication/cobol/epscsmrd.cbl
*** (4/6) Building file MortgageApplication/cobol/epscsmrt.cbl
*** (5/6) Building file MortgageApplication/cobol/epsmlist.cbl
*** (6/6) Building file MortgageApplication/cobol/epsmpmt.cbl
** Building 1 file mapped to LinkEdit.groovy script
*** (1/1) Building file MortgageApplication/link/epsmlist.lnk
** Writing build report data to /u/dbehm/backendWorkspace/MortApp/main/build-0/logs/BuildReport.json
** Writing build report to /u/dbehm/backendWorkspace/MortApp/main/build-0/logs/BuildReport.html
** Updating build result BuildGroup:MortgageApplication-main BuildLabel:build.20231013.140703.007
** Build ended at Fri Oct 13 14:07:26 GMT+01:00 2023
** Build State : CLEAN
** Total files processed : 9
** Total build time : 22.333 seconds
** Build finished
dbbBuild.sh: [INFO} LastBuildLog = /u/dbehm/backendWorkspace/MortApp/main/build-0/logs/buildList.txt
dbbBuild.sh: [INFO] DBB Build Complete. rc=0
rc=0
Pull Logs
-------------
testGenericWrapper.sh: [COMMAND] zowe zos-uss issue ssh "prepareLogs.sh -w /u/dbehm/backendWorkspace/MortApp/main/build-0"
$ prepareLogs.sh -w /u/dbehm/backendWorkspace/MortApp/main/build-0
prepareLogs.sh: [INFO] Prepare Build logs script. Version=1.00
prepareLogs.sh: [INFO] **************************************************************
prepareLogs.sh: [INFO] ** Started - Prepare logs on HOST/USER: z/OS ZT01 04.00 02 8561/BPXROOT
prepareLogs.sh: [INFO] ** Workspace: /u/dbehm/backendWorkspace/MortApp/main/build-0
prepareLogs.sh: [INFO] ** LogDir: /u/dbehm/backendWorkspace/MortApp/main/build-0/logs
prepareLogs.sh: [INFO] **************************************************************
prepareLogs.sh: [INFO] ** Directory contents:
prepareLogs.sh: [INFO] ls -RlTr logs
logs:
total 1424
- untagged T=off -rw-r--r-- 1 BPXROOT TIVUSR 684 Oct 13 15:07 buildList.txt
t UTF-8 T=on -rw-r--r-- 1 BPXROOT TIVUSR 18413 Oct 13 15:07 EPSNBRVL.cobol.log
t UTF-8 T=on -rw-r--r-- 1 BPXROOT TIVUSR 25297 Oct 13 15:07 EPSMPMT.cobol.log
t UTF-8 T=on -rw-r--r-- 1 BPXROOT TIVUSR 4150 Oct 13 15:07 EPSMORT.bms.log
t UTF-8 T=on -rw-r--r-- 1 BPXROOT TIVUSR 9519 Oct 13 15:07 EPSMLIST.linkedit.log
t UTF-8 T=on -rw-r--r-- 1 BPXROOT TIVUSR 72967 Oct 13 15:07 EPSMLIST.cobol.log
t UTF-8 T=on -rw-r--r-- 1 BPXROOT TIVUSR 4150 Oct 13 15:07 EPSMLIS.bms.log
t UTF-8 T=on -rw-r--r-- 1 BPXROOT TIVUSR 19841 Oct 13 15:07 EPSCSMRT.cobol.log
t UTF-8 T=on -rw-r--r-- 1 BPXROOT TIVUSR 390071 Oct 13 15:07 EPSCSMRD.cobol.log
t UTF-8 T=on -rw-r--r-- 1 BPXROOT TIVUSR 53981 Oct 13 15:07 EPSCMORT.cobol.log
t UTF-8 T=on -rw-r--r-- 1 BPXROOT TIVUSR 27514 Oct 13 15:07 BuildReport.json
t UTF-8 T=on -rw-r--r-- 1 BPXROOT TIVUSR 27662 Oct 13 15:07 BuildReport.html
prepareLogs.sh: [INFO] tar -cf logs.tar logs
prepareLogs.sh: [INFO] Logs successfully stored at /u/dbehm/backendWorkspace/MortApp/main/build-0/logs.tar
USS file downloaded successfully.
Destination: ./logs/MortApp/main/build-0/logs.tar
rc=0
testGenericWrapper.sh: [TEST] Executing test scenario testMortgageApplication-Main-Bld-Build-1.
cloneApplicationRepository
-------------
testGenericWrapper.sh: [COMMAND] zowe zos-uss issue ssh "gitClone.sh -w /u/dbehm/backendWorkspace/MortApp/main/build-1 -r https://github.com/dennis-behm/MortgageApplication.git -b main"
$ gitClone.sh -w /u/dbehm/backendWorkspace/MortApp/main/build-1 -r https://gi<ackendWorkspace/MortApp/main/build-1 -r https://git hub.com/dennis-behm/Mortg<in/build-1 -r https://github.com/dennis-behm/Mortga geApplication.git -b main
gitClone.sh: [INFO] Git Clone Wrapper. Version=1.1.0
gitClone.sh: [INFO] **************************************************************
gitClone.sh: [INFO] ** Start Git Clone on HOST/USER: z/OS ZT01 04.00 02 8561/BPXROOT
gitClone.sh: [INFO] ** Repo: https://github.com/dennis-behm/MortgageApplication.git
gitClone.sh: [INFO] ** WorkDir: /u/dbehm/backendWorkspace/MortApp/main/build-1
gitClone.sh: [INFO] ** GitDir: MortgageApplication
gitClone.sh: [INFO] ** Branch: main -> main
gitClone.sh: [INFO] **************************************************************
gitClone.sh: [INFO] Preforming Git Clone of Repo https://github.com/dennis-behm/MortgageApplication.git, Branch main to /u/dbehm/backendWorkspace/MortApp/main/build-1
Cloning into 'MortgageApplication'...
remote: Enumerating objects: 645, done.[K
remote: Counting objects: 0% (1/645)[Kremote: Counting objects: 1% (7/645)[Kremote: Counting objects: 2% (13/645)[Kremote: Counting objects: 3% (20/645)[Kremote: Counting objects: 4% (26/645)[Kremote: Counting objects: 5% (33/645)[Kremote: Counting objects: 6% (39/645)[Kremote: Counting objects: 7% (46/645)[Kremote: Counting objects: 8% (52/645)[Kremote: Counting objects: 9% (59/645)[Kremote: Counting objects: 10% (65/645)[Kremote: Counting objects: 11% (71/645)[Kremote: Counting objects: 12% (78/645)[Kremote: Counting objects: 13% (84/645)[Kremote: Counting objects: 14% (91/645)[Kremote: Counting objects: 15% (97/645)[Kremote: Counting objects: 16% (104/645)[Kremote: Counting objects: 17% (110/645)[Kremote: Counting objects: 18% (117/645)[Kremote: Counting objects: 19% (123/645)[Kremote: Counting objects: 20% (129/645)[Kremote: Counting objects: 21% (136/645)[Kremote: Counting objects: 22% (142/645)[Kremote: Counting objects: 23% (149/645)[Kremote: Counting objects: 24% (155/645)[Kremote: Counting objects: 25% (162/645)[Kremote: Counting objects: 26% (168/645)[Kremote: Counting objects: 27% (175/645)[Kremote: Counting objects: 28% (181/645)[Kremote: Counting objects: 29% (188/645)[Kremote: Counting objects: 30% (194/645)[Kremote: Counting objects: 31% (200/645)[Kremote: Counting objects: 32% (207/645)[Kremote: Counting objects: 33% (213/645)[Kremote: Counting objects: 34% (220/645)[Kremote: Counting objects: 35% (226/645)[Kremote: Counting objects: 36% (233/645)[Kremote: Counting objects: 37% (239/645)[Kremote: Counting objects: 38% (246/645)[Kremote: Counting objects: 39% (252/645)[Kremote: Counting objects: 40% (258/645)[Kremote: Counting objects: 41% (265/645)[Kremote: Counting objects: 42% (271/645)[Kremote: Counting objects: 43% (278/645)[Kremote: Counting objects: 44% (284/645)[Kremote: Counting objects: 45% (291/645)[Kremote: Counting objects: 46% (297/645)[Kremote: Counting objects: 47% (304/645)[Kremote: Counting objects: 48% (310/645)[Kremote: Counting objects: 49% (317/645)[Kremote: Counting objects: 50% (323/645)[Kremote: Counting objects: 51% (329/645)[Kremote: Counting objects: 52% (336/645)[Kremote: Counting objects: 53% (342/645)[Kremote: Counting objects: 54% (349/645)[Kremote: Counting objects: 55% (355/645)[Kremote: Counting objects: 56% (362/645)[Kremote: Counting objects: 57% (368/645)[Kremote: Counting objects: 58% (375/645)[Kremote: Counting objects: 59% (381/645)[Kremote: Counting objects: 60% (387/645)[Kremote: Counting objects: 61% (394/645)[Kremote: Counting objects: 62% (400/645)[Kremote: Counting objects: 63% (407/645)[Kremote: Counting objects: 64% (413/645)[Kremote: Counting objects: 65% (420/645)[Kremote: Counting objects: 66% (426/645)[Kremote: Counting objects: 67% (433/645)[Kremote: Counting objects: 68% (439/645)[Kremote: Counting objects: 69% (446/645)[Kremote: Counting objects: 70% (452/645)[Kremote: Counting objects: 71% (458/645)[Kremote: Counting objects: 72% (465/645)[Kremote: Counting objects: 73% (471/645)[Kremote: Counting objects: 74% (478/645)[Kremote: Counting objects: 75% (484/645)[Kremote: Counting objects: 76% (491/645)[Kremote: Counting objects: 77% (497/645)[Kremote: Counting objects: 78% (504/645)[Kremote: Counting objects: 79% (510/645)[Kremote: Counting objects: 80% (516/645)[Kremote: Counting objects: 81% (523/645)[Kremote: Counting objects: 82% (529/645)[Kremote: Counting objects: 83% (536/645)[Kremote: Counting objects: 84% (542/645)[Kremote: Counting objects: 85% (549/645)[Kremote: Counting objects: 86% (555/645)[Kremote: Counting objects: 87% (562/645)[Kremote: Counting objects: 88% (568/645)[Kremote: Counting objects: 89% (575/645)[Kremote: Counting objects: 90% (581/645)[Kremote: Counting objects: 91% (587/645)[Kremote: Counting objects: 92% (594/645)[Kremote: Counting objects: 93% (600/645)[Kremote: Counting objects: 94% (607/645)[Kremote: Counting objects: 95% (613/645)[Kremote: Counting objects: 96% (620/645)[Kremote: Counting objects: 97% (626/645)[Kremote: Counting objects: 98% (633/645)[Kremote: Counting objects: 99% (639/645)[Kremote: Counting objects: 100% (645/645)[Kremote: Counting objects: 100% (645/645), done.[K
remote: Compressing objects: 0% (1/237)[Kremote: Compressing objects: 1% (3/237)[Kremote: Compressing objects: 2% (5/237)[Kremote: Compressing objects: 3% (8/237)[Kremote: Compressing objects: 4% (10/237)[Kremote: Compressing objects: 5% (12/237)[Kremote: Compressing objects: 6% (15/237)[Kremote: Compressing objects: 7% (17/237)[Kremote: Compressing objects: 8% (19/237)[Kremote: Compressing objects: 9% (22/237)[Kremote: Compressing objects: 10% (24/237)[Kremote: Compressing objects: 11% (27/237)[Kremote: Compressing objects: 12% (29/237)[Kremote: Compressing objects: 13% (31/237)[Kremote: Compressing objects: 14% (34/237)[Kremote: Compressing objects: 15% (36/237)[Kremote: Compressing objects: 16% (38/237)[Kremote: Compressing objects: 17% (41/237)[Kremote: Compressing objects: 18% (43/237)[Kremote: Compressing objects: 19% (46/237)[Kremote: Compressing objects: 20% (48/237)[Kremote: Compressing objects: 21% (50/237)[Kremote: Compressing objects: 22% (53/237)[Kremote: Compressing objects: 23% (55/237)[Kremote: Compressing objects: 24% (57/237)[Kremote: Compressing objects: 25% (60/237)[Kremote: Compressing objects: 26% (62/237)[Kremote: Compressing objects: 27% (64/237)[Kremote: Compressing objects: 28% (67/237)[Kremote: Compressing objects: 29% (69/237)[Kremote: Compressing objects: 30% (72/237)[Kremote: Compressing objects: 31% (74/237)[Kremote: Compressing objects: 32% (76/237)[Kremote: Compressing objects: 33% (79/237)[Kremote: Compressing objects: 34% (81/237)[Kremote: Compressing objects: 35% (83/237)[Kremote: Compressing objects: 36% (86/237)[Kremote: Compressing objects: 37% (88/237)[Kremote: Compressing objects: 38% (91/237)[Kremote: Compressing objects: 39% (93/237)[Kremote: Compressing objects: 40% (95/237)[Kremote: Compressing objects: 41% (98/237)[Kremote: Compressing objects: 42% (100/237)[Kremote: Compressing objects: 43% (102/237)[Kremote: Compressing objects: 44% (105/237)[Kremote: Compressing objects: 45% (107/237)[Kremote: Compressing objects: 46% (110/237)[Kremote: Compressing objects: 47% (112/237)[Kremote: Compressing objects: 48% (114/237)[Kremote: Compressing objects: 49% (117/237)[Kremote: Compressing objects: 50% (119/237)[Kremote: Compressing objects: 51% (121/237)[Kremote: Compressing objects: 52% (124/237)[Kremote: Compressing objects: 53% (126/237)[Kremote: Compressing objects: 54% (128/237)[Kremote: Compressing objects: 55% (131/237)[Kremote: Compressing objects: 56% (133/237)[Kremote: Compressing objects: 57% (136/237)[Kremote: Compressing objects: 58% (138/237)[Kremote: Compressing objects: 59% (140/237)[Kremote: Compressing objects: 60% (143/237)[Kremote: Compressing objects: 61% (145/237)[Kremote: Compressing objects: 62% (147/237)[Kremote: Compressing objects: 63% (150/237)[Kremote: Compressing objects: 64% (152/237)[Kremote: Compressing objects: 65% (155/237)[Kremote: Compressing objects: 66% (157/237)[Kremote: Compressing objects: 67% (159/237)[Kremote: Compressing objects: 68% (162/237)[Kremote: Compressing objects: 69% (164/237)[Kremote: Compressing objects: 70% (166/237)[Kremote: Compressing objects: 71% (169/237)[Kremote: Compressing objects: 72% (171/237)[Kremote: Compressing objects: 73% (174/237)[Kremote: Compressing objects: 74% (176/237)[Kremote: Compressing objects: 75% (178/237)[Kremote: Compressing objects: 76% (181/237)[Kremote: Compressing objects: 77% (183/237)[Kremote: Compressing objects: 78% (185/237)[Kremote: Compressing objects: 79% (188/237)[Kremote: Compressing objects: 80% (190/237)[Kremote: Compressing objects: 81% (192/237)[Kremote: Compressing objects: 82% (195/237)[Kremote: Compressing objects: 83% (197/237)[Kremote: Compressing objects: 84% (200/237)[Kremote: Compressing objects: 85% (202/237)[Kremote: Compressing objects: 86% (204/237)[Kremote: Compressing objects: 87% (207/237)[Kremote: Compressing objects: 88% (209/237)[Kremote: Compressing objects: 89% (211/237)[Kremote: Compressing objects: 90% (214/237)[Kremote: Compressing objects: 91% (216/237)[Kremote: Compressing objects: 92% (219/237)[Kremote: Compressing objects: 93% (221/237)[Kremote: Compressing objects: 94% (223/237)[Kremote: Compressing objects: 95% (226/237)[Kremote: Compressing objects: 96% (228/237)[Kremote: Compressing objects: 97% (230/237)[Kremote: Compressing objects: 98% (233/237)[Kremote: Compressing objects: 99% (235/237)[Kremote: Compressing objects: 100% (237/237)[Kremote: Compressing objects: 100% (237/237), done.[K
Receiving objects: 0% (1/645)Receiving objects: 1% (7/645)Receiving objects: 2% (13/645)Receiving objects: 3% (20/645)Receiving objects: 4% (26/645)Receiving objects: 5% (33/645)Receiving objects: 6% (39/645)Receiving objects: 7% (46/645)Receiving objects: 8% (52/645)Receiving objects: 9% (59/645)Receiving objects: 10% (65/645)Receiving objects: 11% (71/645)Receiving objects: 12% (78/645)Receiving objects: 13% (84/645)Receiving objects: 14% (91/645)Receiving objects: 15% (97/645)Receiving objects: 16% (104/645)Receiving objects: 17% (110/645)Receiving objects: 18% (117/645)Receiving objects: 19% (123/645)Receiving objects: 20% (129/645)Receiving objects: 21% (136/645)Receiving objects: 22% (142/645)Receiving objects: 23% (149/645)Receiving objects: 24% (155/645)Receiving objects: 25% (162/645)Receiving objects: 26% (168/645)Receiving objects: 27% (175/645)Receiving objects: 28% (181/645)Receiving objects: 29% (188/645)Receiving objects: 30% (194/645)Receiving objects: 31% (200/645)Receiving objects: 32% (207/645)Receiving objects: 33% (213/645)Receiving objects: 34% (220/645)Receiving objects: 35% (226/645)Receiving objects: 36% (233/645)Receiving objects: 37% (239/645)Receiving objects: 38% (246/645)Receiving objects: 39% (252/645)Receiving objects: 40% (258/645)Receiving objects: 41% (265/645)Receiving objects: 42% (271/645)Receiving objects: 43% (278/645)Receiving objects: 44% (284/645)Receiving objects: 45% (291/645)Receiving objects: 46% (297/645)Receiving objects: 47% (304/645)Receiving objects: 48% (310/645)Receiving objects: 49% (317/645)Receiving objects: 50% (323/645)Receiving objects: 51% (329/645)Receiving objects: 52% (336/645)Receiving objects: 53% (342/645)Receiving objects: 54% (349/645)Receiving objects: 55% (355/645)Receiving objects: 56% (362/645)Receiving objects: 57% (368/645)Receiving objects: 58% (375/645)Receiving objects: 59% (381/645)Receiving objects: 60% (387/645)Receiving objects: 61% (394/645)Receiving objects: 62% (400/645)Receiving objects: 63% (407/645)Receiving objects: 64% (413/645)Receiving objects: 65% (420/645)Receiving objects: 66% (426/645)Receiving objects: 67% (433/645)Receiving objects: 68% (439/645)Receiving objects: 69% (446/645)Receiving objects: 70% (452/645)Receiving objects: 71% (458/645)Receiving objects: 72% (465/645)Receiving objects: 73% (471/645)Receiving objects: 74% (478/645)Receiving objects: 75% (484/645)Receiving objects: 76% (491/645)Receiving objects: 77% (497/645)Receiving objects: 78% (504/645)Receiving objects: 79% (510/645)Receiving objects: 80% (516/645)Receiving objects: 81% (523/645)Receiving objects: 82% (529/645)remote: Total 645 (delta 394), reused 645 (delta 394), pack-reused 0[K
Receiving objects: 83% (536/645)Receiving objects: 84% (542/645)Receiving objects: 85% (549/645)Receiving objects: 86% (555/645)Receiving objects: 87% (562/645)Receiving objects: 88% (568/645)Receiving objects: 89% (575/645)Receiving objects: 90% (581/645)Receiving objects: 91% (587/645)Receiving objects: 92% (594/645)Receiving objects: 93% (600/645)Receiving objects: 94% (607/645)Receiving objects: 95% (613/645)Receiving objects: 96% (620/645)Receiving objects: 97% (626/645)Receiving objects: 98% (633/645)Receiving objects: 99% (639/645)Receiving objects: 100% (645/645)Receiving objects: 100% (645/645), 131.26 KiB | 574.00 KiB/s, done.
Resolving deltas: 0% (0/394)Resolving deltas: 1% (4/394)Resolving deltas: 2% (8/394)Resolving deltas: 3% (13/394)Resolving deltas: 4% (18/394)Resolving deltas: 14% (58/394)Resolving deltas: 20% (80/394)Resolving deltas: 26% (103/394)Resolving deltas: 34% (135/394)Resolving deltas: 38% (151/394)Resolving deltas: 39% (155/394)Resolving deltas: 44% (175/394)Resolving deltas: 50% (198/394)Resolving deltas: 52% (205/394)Resolving deltas: 53% (209/394)Resolving deltas: 58% (231/394)Resolving deltas: 59% (233/394)Resolving deltas: 60% (238/394)Resolving deltas: 63% (251/394)Resolving deltas: 64% (253/394)Resolving deltas: 70% (276/394)Resolving deltas: 73% (288/394)Resolving deltas: 75% (297/394)Resolving deltas: 77% (306/394)Resolving deltas: 78% (308/394)Resolving deltas: 79% (314/394)Resolving deltas: 80% (317/394)Resolving deltas: 82% (327/394)Resolving deltas: 83% (328/394)Resolving deltas: 88% (347/394)Resolving deltas: 89% (351/394)Resolving deltas: 90% (357/394)Resolving deltas: 96% (379/394)Resolving deltas: 97% (383/394)Resolving deltas: 98% (389/394)Resolving deltas: 100% (394/394)Resolving deltas: 100% (394/394), done.
gitClone.sh: [INFO] Git Status for MortgageApplication
On branch main
Your branch is up to date with 'origin/main'.
nothing to commit, working tree clean
gitClone.sh: [INFO] Git Show-Ref for MortgageApplication
f7380c46a60e7614539ceb4da6d3aa0dd531a238 refs/heads/main
f7380c46a60e7614539ceb4da6d3aa0dd531a238 refs/remotes/origin/HEAD
a411fc163a07c1e054c08e8c3bc055c8fd713fd2 refs/remotes/origin/epic/implementAI
f7380c46a60e7614539ceb4da6d3aa0dd531a238 refs/remotes/origin/feature/setmainbuildbranch
f3050d7c6d38360eac5980411cd0483a7683adc9 refs/remotes/origin/hotfix/rel-1.0.0/myfix
a411fc163a07c1e054c08e8c3bc055c8fd713fd2 refs/remotes/origin/implementAI/myFeatureImpl
f7380c46a60e7614539ceb4da6d3aa0dd531a238 refs/remotes/origin/main
c276d8fe3db4dce2e4183130a4feb7525bae4dfa refs/remotes/origin/release/rel-1.0.0
0cc39e464cdd6fa7a4a7e9bb1381e25daf757d08 refs/tags/rel-1.0.0
gitClone.sh: [INFO] Clone Repository Complete. rc=0
rc=0
Perform Build
-------------
testGenericWrapper.sh: [COMMAND] zowe zos-uss issue ssh "dbbBuild.sh -w /u/dbehm/backendWorkspace/MortApp/main/build-1 -a MortgageApplication -b main -v -p build"
$ dbbBuild.sh -w /u/dbehm/backendWorkspace/MortApp/main/build-1 -a MortgageAp<ackendWorkspace/MortApp/main/build-1 -a MortgageApp lication -b main -v -p bu<in/build-1 -a MortgageApplication -b main -v -p bui ld
dbbBuild.sh: [INFO] DBB Build Wrapper. Version=1.10
dbbBuild.sh: [INFO] **************************************************************
dbbBuild.sh: [INFO] ** Started - DBB Build on HOST/USER: z/OS ZT01 04.00 02 8561/DBEHM
dbbBuild.sh: [INFO] ** Workspace: /u/dbehm/backendWorkspace/MortApp/main/build-1
dbbBuild.sh: [INFO] ** Application: MortgageApplication
dbbBuild.sh: [INFO] ** Branch: main
dbbBuild.sh: [INFO] ** Build Type: --impactBuild --baselineRef refs/tags/rel-1.0.0
dbbBuild.sh: [INFO] ** HLQ: DBEHM.MORTGAGE.MAIN.BLD
dbbBuild.sh: [INFO] ** AppDir: /u/dbehm/backendWorkspace/MortApp/main/build-1/MortgageApplication
dbbBuild.sh: [INFO] ** LogDir: /u/dbehm/backendWorkspace/MortApp/main/build-1/logs
dbbBuild.sh: [INFO] ** zAppBuild Path: /var/dbb/dbb-zappbuild_300
dbbBuild.sh: [INFO] ** DBB_HOME: /usr/lpp/dbb/v2r0
dbbBuild.sh: [INFO] ** DBB JDBC USER: DBEHM
dbbBuild.sh: [INFO] ** DBB JDBC Pwd File: /var/dbb/config/db2-pwd-file.xml
dbbBuild.sh: [INFO] ** Verbose : --verbose
dbbBuild.sh: [INFO] ** DBB Logger: No
dbbBuild.sh: [INFO] **************************************************************
dbbBuild.sh: [INFO] Invoking the zAppBuild Build Framework.
dbbBuild.sh: [INFO] /usr/lpp/dbb/v2r0/bin/groovyz /var/dbb/dbb-zappbuild_300/build.groovy --workspace /u/dbehm/backendWorkspace/MortApp/main/build-1 --application MortgageApplication --outDir /u/dbehm/backendWorkspace/MortApp/main/build-1/logs --hlq DBEHM.MORTGAGE.MAIN.BLD --id DBEHM --pwFile /var/dbb/config/db2-pwd-file.xml --verbose --logEncoding UTF-8 --propFiles /var/dbb/dbb-zappbuild-config/build.properties,/var/dbb/dbb-zappbuild-config/datasets.properties,/var/dbb/dbb-zappbuild-config/buildFolder.properties --impactBuild --baselineRef refs/tags/rel-1.0.0
** Build start at 20231013.020753.007
** Input args = /u/dbehm/backendWorkspace/MortApp/main/build-1 --application MortgageApplication --outDir /u/dbehm/backendWorkspace/MortApp/main/build-1/logs --hlq DBEHM.MORTGAGE.MAIN.BLD --id DBEHM --pwFile /var/dbb/config/db2-pwd-file.xml --verbose --logEncoding UTF-8 --propFiles /var/dbb/dbb-zappbuild-config/build.properties,/var/dbb/dbb-zappbuild-config/datasets.properties,/var/dbb/dbb-zappbuild-config/buildFolder.properties --impactBuild --baselineRef refs/tags/rel-1.0.0
** Loading property file /ZT01/var/dbb/dbb-zappbuild_300/build-conf/datasets.properties
** Loading property file /ZT01/var/dbb/dbb-zappbuild_300/build-conf/dependencyReport.properties
** Loading property file /ZT01/var/dbb/dbb-zappbuild_300/build-conf/Assembler.properties
** Loading property file /ZT01/var/dbb/dbb-zappbuild_300/build-conf/BMS.properties
** Loading property file /ZT01/var/dbb/dbb-zappbuild_300/build-conf/MFS.properties
** Loading property file /ZT01/var/dbb/dbb-zappbuild_300/build-conf/PSBgen.properties
** Loading property file /ZT01/var/dbb/dbb-zappbuild_300/build-conf/DBDgen.properties
** Loading property file /ZT01/var/dbb/dbb-zappbuild_300/build-conf/ACBgen.properties
** Loading property file /ZT01/var/dbb/dbb-zappbuild_300/build-conf/Cobol.properties
** Loading property file /ZT01/var/dbb/dbb-zappbuild_300/build-conf/LinkEdit.properties
** Loading property file /ZT01/var/dbb/dbb-zappbuild_300/build-conf/PLI.properties
** Loading property file /ZT01/var/dbb/dbb-zappbuild_300/build-conf/REXX.properties
** Loading property file /ZT01/var/dbb/dbb-zappbuild_300/build-conf/ZunitConfig.properties
** Loading property file /ZT01/var/dbb/dbb-zappbuild_300/build-conf/Transfer.properties
** Loading property file /ZT01/var/dbb/dbb-zappbuild_300/build-conf/defaultzAppBuildConf.properties
** appConf = /u/dbehm/backendWorkspace/MortApp/main/build-1/MortgageApplication/application-conf
** Loading property file /u/dbehm/backendWorkspace/MortApp/main/build-1/MortgageApplication/application-conf/file.properties
** Loading property file /u/dbehm/backendWorkspace/MortApp/main/build-1/MortgageApplication/application-conf/BMS.properties
** Loading property file /u/dbehm/backendWorkspace/MortApp/main/build-1/MortgageApplication/application-conf/Cobol.properties
** Loading property file /u/dbehm/backendWorkspace/MortApp/main/build-1/MortgageApplication/application-conf/LinkEdit.properties
** Loading property file /u/dbehm/backendWorkspace/MortApp/main/build-1/MortgageApplication/application-conf/CRB.properties
** Loading property file /u/dbehm/backendWorkspace/MortApp/main/build-1/MortgageApplication/application-conf/bind.properties
** Loading property file /var/dbb/dbb-zappbuild-config/build.properties
** Loading property file /var/dbb/dbb-zappbuild-config/datasets.properties
** Loading property file /var/dbb/dbb-zappbuild-config/buildFolder.properties
java.version=11.0.15+10
java.home=/V2R4/usr/lpp/java/J11.0_64
user.dir=/u/dbehm
** Build properties at start up:
IBMZPLI_V51=
IBMZPLI_V52=PLI.V5R2.SIBMZCMP
MACLIB=SYS1.MACLIB
PDTCCMOD=PDTCC.V1R8.SIPVMODA
REFERAL=IMSCFG.IMSC.REFERAL
SASMMOD1=HLASM.SASMMOD1
SBZUSAMP=RATCFG.ZUNIT.SBZUSAMP
SCEELKED=CEE.SCEELKED
SCEEMAC=CEE.SCEEMAC
SCSQCOBC=WMQ.V9R2M4.SCSQCOBC
SCSQLOAD=WMQ.V9R2M4.SCSQLOAD
SCSQMACS=
SCSQPLIC=WMQ.V9R2M4.SCSQPLIC
SDFHCOB=CICSTS.V5R4.CICS.SDFHCOB
SDFHLOAD=CICSTS.V5R4.CICS.SDFHLOAD
SDFHMAC=CICSTS.V5R4.CICS.SDFHMAC
SDFHPL1=
SDFSMAC=IMS.V15R1.SDFSMAC
SDFSRESL=IMS.V15R1.SDFSRESL
SDSNLOAD=DBC0CFG.DB2.V12.SDSNLOAD
SEQAMOD=DEBUG.V14R1.SEQAMOD
SFANLMD=
SFELLOAD=RDZ.V14R1.SFELLOAD
SIGYCOMP_V4=
SIGYCOMP_V6=COBOL.V6R1.SIGYCOMP
acbgen_dbdPDS=DBEHM.MORTGAGE.MAIN.BLD.DBDLIB
acbgen_deployType=ACBLIB
acbgen_loadDatasets=DBEHM.MORTGAGE.MAIN.BLD.ACBLIB
acbgen_loadOptions=cyl space(5,5) dir(40) dsorg(PO) recfm(U) blksize(32760) dsntype(PDS)
acbgen_loadPDS=DBEHM.MORTGAGE.MAIN.BLD.ACBLIB
acbgen_outputDatasets=DBEHM.MORTGAGE.MAIN.BLD.ACBLIB
acbgen_pgm=DFSRRC00
acbgen_psbPDS=DBEHM.MORTGAGE.MAIN.BLD.PSBLIB
acbgen_requiredBuildProperties=acbgen_psbPDS,acbgen_dbdPDS,acbgen_loadPDS, acbgen_pgm,acbgen_linkEditor,acbgen_tempOptions,acbgen_maxRC, SDFSMAC,SCEEMAC
acbgen_tempOptions=cyl space(5,5) unit(vio) blksize(80) lrecl(80) recfm(f,b) new
application=MortgageApplication
applicationBuildGroup=MortgageApplication-main
applicationBuildLabel=build.20231013.140753.007
applicationCollectionName=MortgageApplication-main
applicationConfRootDir=
applicationCurrentBranch=main
applicationDefaultPropFiles=defaultzAppBuildConf.properties
applicationOutputsCollectionName=MortgageApplication-main-outputs
applicationPropFiles=file.properties,BMS.properties,Cobol.properties,LinkEdit.properties,CRB.properties,bind.properties
applicationSrcDirs=MortgageApplication
assember_cicsprecompiler=DFHEAP1$
assembler_compileErrorFeedbackXmlOptions=tracks space(200,40) dsorg(PS) blksize(27998) lrecl(16383) recfm(v,b) new keep
assembler_db2precompiler=DSNHPC
assembler_dbrmPDS=DBEHM.MORTGAGE.MAIN.BLD.DBRM
assembler_debugPDS=DBEHM.MORTGAGE.MAIN.BLD.EQALANGX
assembler_dependenciesDatasetMapping=assembler_macroPDS::**/*
assembler_eqalangx=EQALANGX
assembler_linkEditor=IEWBLINK
assembler_loadDatasets=DBEHM.MORTGAGE.MAIN.BLD.LOAD
assembler_loadOptions=cyl space(1,1) dsorg(PO) recfm(U) blksize(32760) dsntype(library)
assembler_loadPDS=DBEHM.MORTGAGE.MAIN.BLD.LOAD
assembler_macroPDS=DBEHM.MORTGAGE.MAIN.BLD.MACRO
assembler_objPDS=DBEHM.MORTGAGE.MAIN.BLD.OBJ
assembler_outputDatasets=DBEHM.MORTGAGE.MAIN.BLD.LOAD,DBEHM.MORTGAGE.MAIN.BLD.DBRM
assembler_pgm=ASMA90
assembler_requiredBuildProperties=assembler_srcPDS,assembler_macroPDS,assembler_objPDS,assembler_loadPDS, assembler_pgm,assembler_linkEditor,assembler_tempOptions,assembler_maxRC, SASMMOD1,SDFHLOAD,SDFHMAC,MACLIB,SCEELKED,SCEEMAC, assembler_dependencySearch
assembler_sidefileOptions=cyl dsorg(PO) dsntype(library) space(5,5) unit(vio) blksize(27998) lrecl(1562) recfm(v,b)
assembler_srcDatasets=DBEHM.MORTGAGE.MAIN.BLD.ASM,DBEHM.MORTGAGE.MAIN.BLD.MACRO,DBEHM.MORTGAGE.MAIN.BLD.OBJ,DBEHM.MORTGAGE.MAIN.BLD.DBRM
assembler_srcOptions=cyl space(1,1) lrecl(80) dsorg(PO) recfm(F,B) dsntype(library)
assembler_srcPDS=DBEHM.MORTGAGE.MAIN.BLD.ASM
assembler_sysadataOptions=cyl space(5,5) lrecl(32756) dsorg(PO) recfm(v,b) blksize(32760) dsntype(library)
assembler_sysadataPDS=DBEHM.MORTGAGE.MAIN.BLD.SYSADATA
assembler_tempOptions=cyl space(5,5) unit(vio) blksize(80) lrecl(80) recfm(f,b) new
baselineRef=refs/tags/rel-1.0.0
bind_collectionID=MORTGAGE
bind_db2Location=DBC1
bind_maxRC=4
bind_packageOwner=UCDAGNT
bind_performBindPackage=false
bind_qualifier=MORTGAGE
bind_runIspfConfDir=
bmsSearch=search:/u/dbehm/backendWorkspace/MortApp/main/build-1/?path=MortgageApplication/bms/*.bms
bms_assembler=ASMA90
bms_compileParms=SYSPARM(MAP),DECK,NOOBJECT
bms_copyGenParms=SYSPARM(DSECT),DECK,NOOBJECT
bms_copy_deployType=MAPCOPY
bms_cpyPDS=DBEHM.MORTGAGE.MAIN.BLD.BMS.COPY
bms_deployType=MAPLOAD
bms_fileBuildRank=
bms_impactPropertyList=bms_copyGenParms,bms_compileParms,bms_linkEditParms
bms_linkEditParms=MAP,RENT,COMPAT(PM5)
bms_linkEditor=IEWBLINK
bms_loadDatasets=DBEHM.MORTGAGE.MAIN.BLD.LOAD
bms_loadOptions=cyl space(1,1) dsorg(PO) recfm(U) blksize(32760) dsntype(library)
bms_loadPDS=DBEHM.MORTGAGE.MAIN.BLD.LOAD
bms_maxRC=0
bms_outputDatasets=DBEHM.MORTGAGE.MAIN.BLD.BMS.COPY,DBEHM.MORTGAGE.MAIN.BLD.LOAD
bms_requiredBuildProperties=bms_srcPDS,bms_cpyPDS,bms_loadPDS, bms_assembler,bms_linkEditor,bms_tempOptions,bms_maxRC, SASMMOD1,SDFHLOAD,SDFHMAC,MACLIB,SCEELKED
bms_srcDatasets=DBEHM.MORTGAGE.MAIN.BLD.BMS,DBEHM.MORTGAGE.MAIN.BLD.BMS.COPY
bms_srcOptions=cyl space(1,1) lrecl(80) dsorg(PO) recfm(F,B) dsntype(library)
bms_srcPDS=DBEHM.MORTGAGE.MAIN.BLD.BMS
bms_storeSSI=true
bms_tempOptions=cyl space(5,5) unit(vio) blksize(80) lrecl(80) recfm(f,b) new
buildListFileExt=txt
buildOrder=BMS.groovy,Cobol.groovy,LinkEdit.groovy
buildOutDir=/u/dbehm/backendWorkspace/MortApp/main/build-1/logs
buildOutputTSformat=yyyyMMdd.HHmmss.mmm
buildPropFiles=datasets.properties,Assembler.properties,BMS.properties,MFS.properties,PSBgen.properties,DBDgen.properties,ACBgen.properties,Cobol.properties,LinkEdit.properties,PLI.properties,ZunitConfig.properties
cobol_BMS_PDS=${team}.BMS.COPY
cobol_compileCICSParms=CICS
cobol_compileDebugParms=TEST
cobol_compileErrorFeedbackXmlOptions=tracks space(200,40) dsorg(PS) blksize(27998) lrecl(16383) recfm(v,b) new keep
cobol_compileErrorPrefixParms=ADATA,EX(ADX(ELAXMGUX))
cobol_compileMaxRC=4
cobol_compileParms=LIB
cobol_compileSQLParms=SQL
cobol_compileSyslibConcatenation=DBEHM.MORTGAGE.MAIN.BLD.BMS.COPY
cobol_compiler=IGYCRCTL
cobol_compilerVersion=V6
cobol_cpyPDS=DBEHM.MORTGAGE.MAIN.BLD.COPY
cobol_dbrmPDS=DBEHM.MORTGAGE.MAIN.BLD.DBRM
cobol_dependenciesAlternativeLibraryNameMapping=
cobol_dependenciesDatasetMapping=cobol_cpyPDS::**/*
cobol_dependencySearch=search:/u/dbehm/backendWorkspace/MortApp/main/build-1/?path=MortgageApplication/copybook/*.cpy
cobol_deployType=LOAD
cobol_deployTypeCICS=CICSLOAD
cobol_deployTypeDLI=IMSLOAD
cobol_fileBuildRank=
cobol_fileBuildRank=1::**/cobol/epsnbrvl.cbl
cobol_impactPropertyList=cobol_compilerVersion,cobol_compileParms
cobol_impactPropertyListCICS=cobol_compileCICSParms
cobol_impactPropertyListSQL=cobol_compileSQLParms
cobol_linkDebugExit=
cobol_linkEdit=false::**/cobol/epsnbrvl.cbl,**/cobol/epsmlist.cbl
cobol_linkEdit=true
cobol_linkEditMaxRC=4
cobol_linkEditParms=MAP,RENT,COMPAT(PM5)
cobol_linkEditStream=
cobol_linkEditSyslibConcatenation=DBEHM.MORTGAGE.MAIN.BLD.OBJ
cobol_linkEditor=IEWBLINK
cobol_loadDatasets=DBEHM.MORTGAGE.MAIN.BLD.LOAD
cobol_loadOptions=cyl space(1,1) dsorg(PO) recfm(U) blksize(32760) dsntype(library)
cobol_loadPDS=DBEHM.MORTGAGE.MAIN.BLD.LOAD
cobol_objPDS=DBEHM.MORTGAGE.MAIN.BLD.OBJ
cobol_outputDatasets=DBEHM.MORTGAGE.MAIN.BLD.LOAD
cobol_printTempOptions=cyl space(5,5) unit(vio) blksize(133) lrecl(133) recfm(f,b) new
cobol_requiredBuildProperties=cobol_srcPDS,cobol_cpyPDS,cobol_objPDS,cobol_loadPDS,cobol_compiler,cobol_linkEditor,cobol_tempOptions,applicationOutputsCollectionName,SDFHCOB,SDFHLOAD,SDSNLOAD,SCEELKED, cobol_dependencySearch
cobol_scanLoadModule=true
cobol_srcDatasets=DBEHM.MORTGAGE.MAIN.BLD.COBOL,DBEHM.MORTGAGE.MAIN.BLD.COPY,DBEHM.MORTGAGE.MAIN.BLD.OBJ,DBEHM.MORTGAGE.MAIN.BLD.DBRM
cobol_srcOptions=cyl space(1,1) lrecl(80) dsorg(PO) recfm(F,B) dsntype(library)
cobol_srcPDS=DBEHM.MORTGAGE.MAIN.BLD.COBOL
cobol_storeSSI=true
cobol_tempOptions=cyl space(5,5) unit(vio) blksize(80) lrecl(80) recfm(f,b) new
cobol_test_loadDatasets=DBEHM.MORTGAGE.MAIN.BLD.TEST.LOAD
cobol_test_loadOptions=cyl space(1,1) dsorg(PO) recfm(U) blksize(32760) dsntype(library)
cobol_test_srcDatasets=DBEHM.MORTGAGE.MAIN.BLD.TEST.COBOL
cobol_test_srcOptions=cyl space(1,1) lrecl(80) dsorg(PO) recfm(F,B) dsntype(library)
cobol_testcase_loadPDS=DBEHM.MORTGAGE.MAIN.BLD.TEST.LOAD
cobol_testcase_srcPDS=DBEHM.MORTGAGE.MAIN.BLD.TEST.COBOL
continueOnScanFailure=true
copybookSearch=search:/u/dbehm/backendWorkspace/MortApp/main/build-1/?path=MortgageApplication/copybook/*.cpy
crb_maxRC=4
crb_zrbLocation=/var/crb-1.0.3/cics-resource-builder/bin/zrb
createBuildOutputSubfolder=false
createTestcaseDependency=true
dbb.LinkEditScanner.excludeFilter=CICSTS.V5R4.CICS.SDFHLOAD.*, CEE.SCEELKED.*
dbb.RepositoryClient.password=ADMIN
dbb.RepositoryClient.passwordFile=/ZT01/var/dbb/dbb-zappbuild_300/utilities/ADMIN.pw
dbb.RepositoryClient.url=https://10.3.20.96:10443/dbb
dbb.RepositoryClient.userId=ADMIN
dbb.file.tagging=true
dbb.gateway.accountNumber=
dbb.gateway.groupId=
dbb.gateway.logLevel=2
dbb.gateway.procedureName=
dbb.gateway.regionSize=
dbb.gateway.type=legacy
dbb.scannerMapping="scannerClass":"DependencyScanner", "languageHint":"ASM"::asm,mac
dbb.scannerMapping="scannerClass":"DependencyScanner", "languageHint":"C"::c,h
dbb.scannerMapping="scannerClass":"DependencyScanner", "languageHint":"COB"::cbl,cpy,cob
dbb.scannerMapping="scannerClass":"DependencyScanner", "languageHint":"CPP"::cpp,hpp
dbb.scannerMapping="scannerClass":"DependencyScanner", "languageHint":"PLI"::pli,inc
dbb.scannerMapping="scannerClass":"DependencyScanner", "languageHint":"REXX"::rexx
dbb.scannerMapping="scannerClass":"ZUnitConfigScanner"::bzucfg
dbb.scriptMapping=Assembler.groovy::**/*.asm
dbb.scriptMapping=BMS.groovy::**/*.bms
dbb.scriptMapping=CRB.groovy::**/crb/*.yaml
dbb.scriptMapping=Cobol.groovy::**/*.cbl
dbb.scriptMapping=LinkEdit.groovy::**/*.lnk
dbb.scriptMapping=PLI.groovy::**/*.pli
dbdgen_compileErrorFeedbackXmlOptions=tracks space(200,40) dsorg(PS) blksize(27998) lrecl(16383) recfm(v,b) new keep
dbdgen_deployType=DBDLIB
dbdgen_linkEditor=IEWBLINK
dbdgen_loadDatasets=DBEHM.MORTGAGE.MAIN.BLD.DBDLIB
dbdgen_loadOptions=cyl space(1,1) dsorg(PO) recfm(U) blksize(32760) dsntype(library)
dbdgen_loadPDS=DBEHM.MORTGAGE.MAIN.BLD.DBDLIB
dbdgen_objPDS=DBEHM.MORTGAGE.MAIN.BLD.OBJ
dbdgen_outputDatasets=DBEHM.MORTGAGE.MAIN.BLD.DBDLIB
dbdgen_pgm=ASMA90
dbdgen_requiredBuildProperties=dbdgen_srcPDS,dbdgen_objPDS,dbdgen_loadPDS, dbdgen_pgm,dbdgen_linkEditor,dbdgen_tempOptions,dbdgen_assemblerMaxRC, SDFSMAC,SCEEMAC
dbdgen_srcDatasets=DBEHM.MORTGAGE.MAIN.BLD.DBD,DBEHM.MORTGAGE.MAIN.BLD.OBJ
dbdgen_srcOptions=cyl space(1,1) lrecl(80) dsorg(PO) recfm(F,B) dsntype(library)
dbdgen_srcPDS=DBEHM.MORTGAGE.MAIN.BLD.DBD
dbdgen_tempOptions=cyl space(5,5) unit(vio) blksize(80) lrecl(80) recfm(f,b) new
documentDeleteRecords=false
excludeFileList=.*,**/.*,**/*.properties,**/*.xml,**/*.groovy,**/*.json,**/*.md,**/application-conf/*.*
formatConsoleOutput=false
generateDb2BindInfoRecord=true
generateDb2BindInfoRecordProperties=bind_collectionID,bind_packageOwner,bind_qualifier
gitRepositoryCompareService=/compare/
gitRepositoryURL=https://github.com/ibm/dbb-zappbuild/
hlq=DBEHM.MORTGAGE.MAIN.BLD
impactBuild=true
impactBuildOnBuildPropertyChanges=false
impactBuildOnBuildPropertyList=[${assembler_impactPropertyList},${assembler_impactPropertyListCICS},${assembler_impactPropertyListSQL},bms_copyGenParms,bms_compileParms,bms_linkEditParms,cobol_compilerVersion,cobol_compileParms,cobol_compileCICSParms,cobol_compileSQLParms,${dbdgen_impactPropertyList},linkEdit_parms,${mfs_impactPropertyList},${pli_impactPropertyList},${pli_impactPropertyListCICS},${pli_impactPropertyListSQL},${psbgen_impactPropertyList}]
impactSearch=search:/u/dbehm/backendWorkspace/MortApp/main/build-1/?path=MortgageApplication/copybook/*.cpysearch:/u/dbehm/backendWorkspace/MortApp/main/build-1/?path=MortgageApplication/bms/*.bmssearch:[:LINK]/u/dbehm/backendWorkspace/MortApp/main/build-1/?path=MortgageApplication/cobol/*.cbl
isCICS=true::**/cobol/epsmlist.cbl,**/link/epsmlist.lnk,**/cobol/epscsmrt.cbl
linkEdit_parms=MAP,RENT,COMPAT(PM5)
linkSearch=search:[:LINK]/u/dbehm/backendWorkspace/MortApp/main/build-1/?path=MortgageApplication/cobol/*.cbl
linkedit_deployType=LOAD
linkedit_deployTypeCICS=CICSLOAD
linkedit_deployTypeDLI=IMSLOAD
linkedit_fileBuildRank=
linkedit_impactPropertyList=linkEdit_parms
linkedit_linkEditSyslibConcatenation=
linkedit_linkEditor=IEWBLINK
linkedit_loadDatasets=DBEHM.MORTGAGE.MAIN.BLD.LOAD
linkedit_loadOptions=cyl space(1,1) dsorg(PO) recfm(U) blksize(32760) dsntype(library)
linkedit_loadPDS=DBEHM.MORTGAGE.MAIN.BLD.LOAD
linkedit_maxRC=0
linkedit_objPDS=DBEHM.MORTGAGE.MAIN.BLD.OBJ
linkedit_outputDatasets=DBEHM.MORTGAGE.MAIN.BLD.LOAD
linkedit_requiredBuildProperties=linkedit_srcPDS,linkedit_objPDS,linkedit_loadPDS,linkedit_linkEditor,linkedit_tempOptions,applicationOutputsCollectionName, SDFHLOAD,SCEELKED
linkedit_scanLoadModule=true
linkedit_srcDatasets=DBEHM.MORTGAGE.MAIN.BLD.LINK,DBEHM.MORTGAGE.MAIN.BLD.OBJ
linkedit_srcOptions=cyl space(1,1) lrecl(80) dsorg(PO) recfm(F,B) dsntype(library)
linkedit_srcPDS=DBEHM.MORTGAGE.MAIN.BLD.LINK
linkedit_storeSSI=true
linkedit_tempOptions=cyl space(5,5) unit(vio) blksize(80) lrecl(80) recfm(f,b) new
loadFileLevelProperties=false
loadFileLevelProperties=true::**/cobol/epsmlist.cbl
logEncoding=UTF-8
mainBuildBranch=main
metadataStoreType=file
mfs_deployType=MFS
mfs_loadDatasets=DBEHM.MORTGAGE.MAIN.BLD.TFORMAT
mfs_loadOptions=cyl space(1,1) dsorg(PO) recfm(U) blksize(32760) dsntype(library)
mfs_phase1processor=DFSUPAA0
mfs_phase2processor=DFSUNUB0
mfs_requiredBuildProperties=mfs_srcPDS,mfs_tformatPDS, mfs_phase1processor,mfs_phase2processor,mfs_tempOptions,mfs_phase1MaxRC,mfs_phase2MaxRC, SDFSMAC,SDFSRESL,REFERAL
mfs_srcDatasets=DBEHM.MORTGAGE.MAIN.BLD.MFS
mfs_srcOptions=cyl space(1,1) lrecl(80) dsorg(PO) blksize(32720) recfm(F,B) dsntype(library)
mfs_srcPDS=DBEHM.MORTGAGE.MAIN.BLD.MFS
mfs_tempOptions=cyl space(5,5) unit(vio) new
mfs_tformatPDS=DBEHM.MORTGAGE.MAIN.BLD.TFORMAT
outDir=/u/dbehm/backendWorkspace/MortApp/main/build-1/logs
pli_BMS_PDS=${team}.BMS.COPY
pli_compileErrorFeedbackXmlOptions=tracks space(200,40) dsorg(PS) blksize(27998) lrecl(16383) recfm(v,b) new keep
pli_compiler=IBMZPLI
pli_dbrmPDS=DBEHM.MORTGAGE.MAIN.BLD.DBRM
pli_dependenciesAlternativeLibraryNameMapping=
pli_dependenciesDatasetMapping=pli_incPDS::**/*
pli_incPDS=DBEHM.MORTGAGE.MAIN.BLD.PLI.INCLUDE
pli_linkEditor=IEWBLINK
pli_listOptions=cyl space(5,5) unit(vio) blksize(0) lrecl(137) recfm(v,b) new
pli_loadDatasets=DBEHM.MORTGAGE.MAIN.BLD.LOAD
pli_loadOptions=cyl space(1,1) dsorg(PO) recfm(U) blksize(32760) dsntype(library)
pli_loadPDS=DBEHM.MORTGAGE.MAIN.BLD.LOAD
pli_objPDS=DBEHM.MORTGAGE.MAIN.BLD.OBJ
pli_outputDatasets=DBEHM.MORTGAGE.MAIN.BLD.LOAD,DBEHM.MORTGAGE.MAIN.BLD.DBRM
pli_requiredBuildPropeties=pli_srcPDS,pli_incPDS,pli_objPDS,pli_loadPDS,pli_compiler,pli_linkEditor,pli_tempOptions,applicationOutputsCollectionName,SDFHCOB,SDFHLOAD,SDSNLOAD,SCEELKED, pli_dependencySearch
pli_srcDatasets=DBEHM.MORTGAGE.MAIN.BLD.PLI,DBEHM.MORTGAGE.MAIN.BLD.PLI.INCLUDE,DBEHM.MORTGAGE.MAIN.BLD.OBJ,DBEHM.MORTGAGE.MAIN.BLD.DBRM
pli_srcOptions=cyl space(1,1) lrecl(80) dsorg(PO) recfm(F,B) dsntype(library)
pli_srcPDS=DBEHM.MORTGAGE.MAIN.BLD.PLI
pli_tempOptions=cyl space(5,5) unit(vio) blksize(80) lrecl(80) recfm(f,b) new
pli_test_loadDatasets=DBEHM.MORTGAGE.MAIN.BLD.TEST.LOAD
pli_test_loadOptions=cyl space(1,1) dsorg(PO) recfm(U) blksize(32760) dsntype(library)
pli_test_srcDatasets=DBEHM.MORTGAGE.MAIN.BLD.TEST.PLI
pli_test_srcOptions=cyl space(1,1) lrecl(80) dsorg(PO) recfm(F,B) dsntype(library)
pli_testcase_loadPDS=DBEHM.MORTGAGE.MAIN.BLD.TEST.LOAD
pli_testcase_srcPDS=DBEHM.MORTGAGE.MAIN.BLD.TEST.PLI
propFiles=/var/dbb/dbb-zappbuild-config/build.properties,/var/dbb/dbb-zappbuild-config/datasets.properties,/var/dbb/dbb-zappbuild-config/buildFolder.properties
propertyFileExtension=properties
propertyFilePath=properties
psbgen_compileErrorFeedbackXmlOptions=tracks space(200,40) dsorg(PS) blksize(27998) lrecl(16383) recfm(v,b) new keep
psbgen_deployType=PSBLIB
psbgen_linkEditor=IEWBLINK
psbgen_loadDatasets=DBEHM.MORTGAGE.MAIN.BLD.PSBLIB
psbgen_loadOptions=cyl space(1,1) dsorg(PO) recfm(U) blksize(32760) dsntype(library)
psbgen_loadPDS=DBEHM.MORTGAGE.MAIN.BLD.PSBLIB
psbgen_objPDS=DBEHM.MORTGAGE.MAIN.BLD.OBJ
psbgen_outputDatasets=DBEHM.MORTGAGE.MAIN.BLD.PSBLIB
psbgen_pgm=ASMA90
psbgen_requiredBuildProperties=psbgen_srcPDS,psbgen_objPDS,psbgen_loadPDS, psbgen_pgm,psbgen_linkEditor,psbgen_tempOptions,psbgen_assemblerMaxRC, SDFSMAC,SCEEMAC
psbgen_srcDatasets=DBEHM.MORTGAGE.MAIN.BLD.PSB,DBEHM.MORTGAGE.MAIN.BLD.OBJ
psbgen_srcOptions=cyl space(1,1) lrecl(80) dsorg(PO) recfm(F,B) dsntype(library)
psbgen_srcPDS=DBEHM.MORTGAGE.MAIN.BLD.PSB
psbgen_tempOptions=cyl space(5,5) unit(vio) blksize(80) lrecl(80) recfm(f,b) new
reportExternalImpacts=false
reportExternalImpactsAnalysisDepths=simple
reportExternalImpactsAnalysisFileFilter=**/*
reportExternalImpactsCollectionPatterns=.*-master.*
requiredBuildProperties=buildOrder,buildListFileExt
requiredDBBToolkitVersion=2.0.0
resolveSubsystems=false
rexx_cexecDatasets=DBEHM.MORTGAGE.MAIN.BLD.CEXEC
rexx_cexecOptions=cyl space(1,1) lrecl(80) recfm(F,B) blksize(27920) DSORG(PO) dsntype(pds) dir(10)
rexx_cexecPDS=DBEHM.MORTGAGE.MAIN.BLD.CEXEC
rexx_compiler=REXXCOMP
rexx_dependenciesDatasetMapping=rexx_srcPDS::**/*
rexx_linkEditor=IEWBLINK
rexx_loadDatasets=DBEHM.MORTGAGE.MAIN.BLD.LOAD
rexx_loadOptions=cyl space(1,1) dsorg(PO) recfm(U) blksize(32760) dsntype(library)
rexx_loadPDS=DBEHM.MORTGAGE.MAIN.BLD.LOAD
rexx_objPDS=DBEHM.MORTGAGE.MAIN.BLD.OBJ
rexx_outputDatasets=DBEHM.MORTGAGE.MAIN.BLD.CEXEC,DBEHM.MORTGAGE.MAIN.BLD.LOAD
rexx_printTempOptions=cyl space(5,5) unit(vio) blksize(133) lrecl(133) recfm(f,b) new
rexx_requiredBuildProperties=rexx_srcPDS,rexx_objPDS,rexx_loadPDS,rexx_cexecPDS, rexx_compiler,rexx_linkEditor,rexx_tempOptions, SFANLMD, rexx_dependencySearch
rexx_rexxPrintTempOptions=cyl space(5,5) unit(vio) blksize(121) lrecl(121) recfm(f,a) new
rexx_srcDatasets=DBEHM.MORTGAGE.MAIN.BLD.REXX,DBEHM.MORTGAGE.MAIN.BLD.OBJ
rexx_srcOptions=cyl space(1,1) lrecl(80) dsorg(PO) recfm(F,B) dsntype(library)
rexx_srcPDS=DBEHM.MORTGAGE.MAIN.BLD.REXX
rexx_tempOptions=cyl space(5,5) unit(vio) blksize(80) lrecl(80) recfm(f,b) new
skipImpactCalculationList=
startTime=20231013.020753.007
topicBranchBuild=null
transfer_dsOptions=cyl space(1,1) lrecl(144) dsorg(PO) recfm(F,B) dsntype(library)::transfer_xmlPDS
transfer_dsOptions=cyl space(1,1) lrecl(80) dsorg(PO) recfm(F,B) dsntype(library)::transfer_srcPDS,transfer_jclPDS
transfer_jclPDS=DBEHM.MORTGAGE.MAIN.BLD.JCL
transfer_requiredBuildProperties=transfer_srcPDS,transfer_dsOptions, transfer_deployType
transfer_srcPDS=DBEHM.MORTGAGE.MAIN.BLD.SOURCE
transfer_xmlPDS=DBEHM.MORTGAGE.MAIN.BLD.XML
verbose=true
workspace=/u/dbehm/backendWorkspace/MortApp/main/build-1
zAppBuildDir=/ZT01/var/dbb/dbb-zappbuild_300
zunit_bzucfgPDS=DBEHM.MORTGAGE.MAIN.BLD.BZU.BZUCFG
zunit_bzuplayPDS=DBEHM.MORTGAGE.MAIN.BLD.BZU.BZUPLAY
zunit_bzureportPDS=DBEHM.MORTGAGE.MAIN.BLD.BZU.BZURPT
zunit_dependenciesDatasetMapping=zunit_bzuplayPDS::**/*
zunit_loadDatasets=DBEHM.MORTGAGE.MAIN.BLD.BZU.BZUPLAY
zunit_loadOptions=cyl space(1,1) dsorg(PO) lrecl(256) recfm(F,B) blksize(32512) dsntype(library)
zunit_reportDatasets=DBEHM.MORTGAGE.MAIN.BLD.BZU.BZURPT
zunit_reportOptions=tracks space(200,40) dsorg(PO) blksize(32760) lrecl(16383) recfm(v,b) dsntype(library)
zunit_requiredBuildProperties=zunit_srcDatasets,zunit_loadDatasets,zunit_reportDatasets,zunit_bzucfgPDS,zunit_bzureportPDS,zunit_bzuplayPDS,zunit_srcOptions,zunit_loadOptions,zunit_reportOptions,jobCard,zunit_maxPassRC,zunit_maxWarnRC,zunit_playbackFileExtension,zunit_bzuplayParms,zunit_userDebugSessionTestParm, zunit_dependencySearch
zunit_srcDatasets=DBEHM.MORTGAGE.MAIN.BLD.BZU.BZUCFG
zunit_srcOptions=cyl space(1,1) lrecl(27998) dsorg(PO) recfm(V,B) dsntype(library)
** zAppBuild running on DBB Toolkit Version 2.0.1 22-Jun-2023 14:29:33
required props = buildOrder,buildListFileExt
** File MetadataStore initialized
** Build output located at /u/dbehm/backendWorkspace/MortApp/main/build-1/logs
** Build result created for BuildGroup:MortgageApplication-main BuildLabel:build.20231013.140753.007
** Loading DBB scanner mapping configuration dbb.scannerMapping
** --impactBuild option selected. Building impacted programs for application MortgageApplication
** Getting current hash for directory /u/dbehm/backendWorkspace/MortApp/main/build-1/MortgageApplication
** Storing MortgageApplication : f7380c46a60e7614539ceb4da6d3aa0dd531a238
** Getting baseline hash for directory /u/dbehm/backendWorkspace/MortApp/main/build-1/MortgageApplication
*** Baseline hash for directory MortgageApplication retrieved from overwrite.
** Storing MortgageApplication : refs/tags/rel-1.0.0
** Calculating changed files for directory /u/dbehm/backendWorkspace/MortApp/main/build-1/MortgageApplication
** Diffing baseline refs/tags/rel-1.0.0 -> current f7380c46a60e7614539ceb4da6d3aa0dd531a238
WARNING: An illegal reflective access operation has occurred
WARNING: Illegal reflective access by org.codehaus.groovy.vmplugin.v9.Java9 (file:/V2R4/usr/lpp/dbb/v2r0/groovy/lib/groovy-4.0.12.jar) to method sun.nio.fs.UnixFileSystem.getPathMatcher(java.lang.String)
WARNING: Please consider reporting this to the maintainers of org.codehaus.groovy.vmplugin.v9.Java9
WARNING: Use --illegal-access=warn to enable warnings of further illegal reflective access operations
WARNING: All illegal access operations will be denied in a future release
*** Changed files for directory /u/dbehm/backendWorkspace/MortApp/main/build-1/MortgageApplication :
**** MortgageApplication/cobol/epsnbrvl.cbl
*** Deleted files for directory /u/dbehm/backendWorkspace/MortApp/main/build-1/MortgageApplication :
**** MortgageApplication/application-conf/BaseLineRef.txt
*** Renamed files for directory /u/dbehm/backendWorkspace/MortApp/main/build-1/MortgageApplication :
** Updating collections MortgageApplication-main and MortgageApplication-main-outputs
*** Deleting logical file for MortgageApplication/application-conf/BaseLineRef.txt
*** Scanning file MortgageApplication/cobol/epsnbrvl.cbl (/u/dbehm/backendWorkspace/MortApp/main/build-1/MortgageApplication/cobol/epsnbrvl.cbl with class com.ibm.dbb.dependency.DependencyScanner)
*** Logical file for MortgageApplication/cobol/epsnbrvl.cbl =
{
"lname": "EPSNBRVL",
"file": "MortgageApplication/cobol/epsnbrvl.cbl",
"language": "COB",
"cics": false,
"sql": false,
"dli": false,
"mq": false,
"logicalDependencies": [
{
"lname": "EPSNBRPM",
"library": "SYSLIB",
"category": "COPY"
}
]
}
** Storing 1 logical files in MetadataStore collection 'MortgageApplication-main'
*** Perform impacted analysis for changed files.
** Found build script mapping for MortgageApplication/cobol/epsnbrvl.cbl. Adding to build list
** Performing impact analysis on changed file MortgageApplication/cobol/epsnbrvl.cbl
*** Creating SearchPathImpactFinder with collections [MortgageApplication-main, MortgageApplication-main-outputs] and impactSearch configuration search:/u/dbehm/backendWorkspace/MortApp/main/build-1/?path=MortgageApplication/copybook/*.cpysearch:/u/dbehm/backendWorkspace/MortApp/main/build-1/?path=MortgageApplication/bms/*.bmssearch:[:LINK]/u/dbehm/backendWorkspace/MortApp/main/build-1/?path=MortgageApplication/cobol/*.cbl
** Found impacted file MortgageApplication/cobol/epscmort.cbl
** MortgageApplication/cobol/epscmort.cbl is impacted by changed file MortgageApplication/cobol/epsnbrvl.cbl. Adding to build list.
** Calculation of impacted files by changed properties has been skipped due to configuration.
** Writing build list file to /u/dbehm/backendWorkspace/MortApp/main/build-1/logs/buildList.txt
MortgageApplication/cobol/epsnbrvl.cbl
MortgageApplication/cobol/epscmort.cbl
** Writing list of deleted files to /u/dbehm/backendWorkspace/MortApp/main/build-1/logs/deletedFilesList.txt
MortgageApplication/application-conf/BaseLineRef.txt
** Populating file level properties from individual artifact properties files.
* Populating file level properties overrides.
** Checking file property overrides for MortgageApplication/cobol/epsnbrvl.cbl
*** Checking for existing file property overrides
** Checking file property overrides for MortgageApplication/cobol/epscmort.cbl
*** Checking for existing file property overrides
** Invoking build scripts according to build order: BMS.groovy,Cobol.groovy,LinkEdit.groovy
** Building 2 files mapped to Cobol.groovy script
required props = cobol_srcPDS,cobol_cpyPDS,cobol_objPDS,cobol_loadPDS,cobol_compiler,cobol_linkEditor,cobol_tempOptions,applicationOutputsCollectionName,SDFHCOB,SDFHLOAD,SDSNLOAD,SCEELKED, cobol_dependencySearch
** Creating / verifying build dataset DBEHM.MORTGAGE.MAIN.BLD.COBOL
** Creating / verifying build dataset DBEHM.MORTGAGE.MAIN.BLD.COPY
** Creating / verifying build dataset DBEHM.MORTGAGE.MAIN.BLD.OBJ
** Creating / verifying build dataset DBEHM.MORTGAGE.MAIN.BLD.DBRM
** Creating / verifying build dataset DBEHM.MORTGAGE.MAIN.BLD.LOAD
*** (1/2) Building file MortgageApplication/cobol/epsnbrvl.cbl
*** Resolution rules for MortgageApplication/cobol/epsnbrvl.cbl:
search:/u/dbehm/backendWorkspace/MortApp/main/build-1/?path=MortgageApplication/copybook/*.cpy
*** Physical dependencies for MortgageApplication/cobol/epsnbrvl.cbl:
{
"lname": "EPSNBRPM",
"library": "SYSLIB",
"category": "COPY",
"sourceDir": "/u/dbehm/backendWorkspace/MortApp/main/build-1/",
"file": "MortgageApplication/copybook/epsnbrpm.cpy",
"resolved": true,
"excluded": false
}
Program attributes: CICS=false, SQL=false, DLI=false, MQ=false
Cobol compiler parms for MortgageApplication/cobol/epsnbrvl.cbl = LIB
Link-Edit parms for MortgageApplication/cobol/epsnbrvl.cbl = MAP,RENT,COMPAT(PM5),SSI=f7380c46
*** (2/2) Building file MortgageApplication/cobol/epscmort.cbl
*** Resolution rules for MortgageApplication/cobol/epscmort.cbl:
search:/u/dbehm/backendWorkspace/MortApp/main/build-1/?path=MortgageApplication/copybook/*.cpy
*** Physical dependencies for MortgageApplication/cobol/epscmort.cbl:
{
"lname": "DFHAID",
"library": "SYSLIB",
"category": "COPY",
"resolved": false,
"excluded": false
}
{
"lname": "EPSMORT",
"library": "SYSLIB",
"category": "COPY",
"resolved": false,
"excluded": false
}
{
"lname": "EPSMTCOM",
"library": "SYSLIB",
"category": "COPY",
"sourceDir": "/u/dbehm/backendWorkspace/MortApp/main/build-1/",
"file": "MortgageApplication/copybook/epsmtcom.cpy",
"resolved": true,
"excluded": false
}
{
"lname": "EPSMTINP",
"library": "SYSLIB",
"category": "COPY",
"sourceDir": "/u/dbehm/backendWorkspace/MortApp/main/build-1/",
"file": "MortgageApplication/copybook/epsmtinp.cpy",
"resolved": true,
"excluded": false
}
{
"lname": "EPSMTOUT",
"library": "SYSLIB",
"category": "COPY",
"sourceDir": "/u/dbehm/backendWorkspace/MortApp/main/build-1/",
"file": "MortgageApplication/copybook/epsmtout.cpy",
"resolved": true,
"excluded": false
}
{
"lname": "EPSNBRPM",
"library": "SYSLIB",
"category": "COPY",
"sourceDir": "/u/dbehm/backendWorkspace/MortApp/main/build-1/",
"file": "MortgageApplication/copybook/epsnbrpm.cpy",
"resolved": true,
"excluded": false
}
{
"lname": "SQLCA",
"library": "SYSLIB",
"category": "SQL INCLUDE",
"resolved": false,
"excluded": false
}
Program attributes: CICS=true, SQL=true, DLI=false, MQ=false
Cobol compiler parms for MortgageApplication/cobol/epscmort.cbl = LIB,CICS,SQL
Link-Edit parms for MortgageApplication/cobol/epscmort.cbl = MAP,RENT,COMPAT(PM5),SSI=f7380c46
*** Scanning load module for MortgageApplication/cobol/epscmort.cbl
*** Logical file =
{
"lname": "EPSCMORT",
"file": "MortgageApplication/cobol/epscmort.cbl",
"language": "ZBND",
"cics": false,
"sql": false,
"dli": false,
"mq": false,
"logicalDependencies": [
{
"lname": "EPSCMORT",
"library": "DBEHM.MORTGAGE.MAIN.BLD.OBJ",
"category": "LINK"
},
{
"lname": "EPSNBRVL",
"library": "DBEHM.MORTGAGE.MAIN.BLD.OBJ",
"category": "LINK"
}
]
}
*** Obtaining hash for directory /u/dbehm/backendWorkspace/MortApp/main/build-1/MortgageApplication
** Setting property :githash:MortgageApplication : f7380c46a60e7614539ceb4da6d3aa0dd531a238
** Setting property :giturl:MortgageApplication : https://github.com/dennis-behm/MortgageApplication.git
** Setting property :gitchangedfiles:MortgageApplication : https://github.com/ibm/dbb-zappbuild/compare/f7380c46a60e7614539ceb4da6d3aa0dd531a238..f7380c46a60e7614539ceb4da6d3aa0dd531a238
** Writing build report data to /u/dbehm/backendWorkspace/MortApp/main/build-1/logs/BuildReport.json
** Writing build report to /u/dbehm/backendWorkspace/MortApp/main/build-1/logs/BuildReport.html
** Updating build result BuildGroup:MortgageApplication-main BuildLabel:build.20231013.140753.007
** Build ended at Fri Oct 13 14:08:02 GMT+01:00 2023
** Build State : CLEAN
** Total files processed : 2
** Total build time : 9.477 seconds
** Build finished
dbbBuild.sh: [INFO} LastBuildLog = /u/dbehm/backendWorkspace/MortApp/main/build-1/logs/buildList.txt
dbbBuild.sh: [INFO] DBB Build Complete. rc=0
rc=0
Package Step - UCD Packaging
-------------
testGenericWrapper.sh: [COMMAND] zowe zos-uss issue ssh "ucdPackaging.sh -v MortgageApplication.build-1.2023-10-13_15-07-34 -c MortgageApplication -w /u/dbehm/backendWorkspace/MortApp/main/build-1 -b main -u http://acme.pipeline.org/MortgageApplication.build-1 -e /var/jenkins/zappbuild_config/MortgageAppArtifactRepository.properties"
$ ucdPackaging.sh -v MortgageApplication.build-1.2023-10-13_15-07-34 -c Mortg<geApplication.build-1.2023-10-13_15-07-34 -c Mortga geApplication -w /u/dbehm<-10-13_15-07-34 -c MortgageApplication -w /u/dbehm/ backendWorkspace/MortApp/<eApplication -w /u/dbehm/backendWorkspace/MortApp/m ain/build-1 -b main -u h<ackendWorkspace/MortApp/main/build-1 -b main -u ht tp://acme.pipeline.org/Mo<in/build-1 -b main -u http://acme.pipeline.org/Mor tgageApplication.build-1 <p://acme.pipeline.org/MortgageApplication.build-1 - e /var/jenkins/zappbuild_<gageApplication.build-1 -e /var/jenkins/zappbuild_c onfig/MortgageAppArtifact< /var/jenkins/zappbuild_config/MortgageAppArtifactR epository.properties
ucdPackaging.sh: [INFO] UCD Packaging Wrapper. Version=1.00
ucdPackaging.sh: [INFO] **************************************************************
ucdPackaging.sh: [INFO] ** Started - UCD Publish on HOST/USER: z/OS ZT01 04.00 02 8561/BPXROOT
ucdPackaging.sh: [INFO] ** WorkDir:
ucdPackaging.sh: [INFO] ** UCD Version: MortgageApplication.build-1.2023-10-13_15-07-34
ucdPackaging.sh: [INFO] ** UCD Component: MortgageApplication
ucdPackaging.sh: [INFO] ** Artifacts Location: /u/dbehm/backendWorkspace/MortApp/main/build-1/logs
ucdPackaging.sh: [INFO] ** PackagingScript Path: /var/dbb/extensions/dbb20/Pipeline/CreateUCDComponentVersion/dbb-ucd-packaging.groovy
ucdPackaging.sh: [INFO] ** BuzTool Path: /var/ucd-agent/bin/buztool.sh
ucdPackaging.sh: [INFO] ** External Repository cfg: /var/jenkins/zappbuild_config/MortgageAppArtifactRepository.properties
ucdPackaging.sh: [INFO] ** Packaging properties:
ucdPackaging.sh: [INFO] ** Pipeline URL: http://acme.pipeline.org/MortgageApplication.build-1
ucdPackaging.sh: [INFO] ** Git branch name: main
ucdPackaging.sh: [INFO] ** Pull Request URL:
ucdPackaging.sh: [INFO] ** DBB_HOME: /usr/lpp/dbb/v2r0
ucdPackaging.sh: [INFO] **************************************************************
ucdPackaging.sh: [INFO] Invoking the DBB UCD Packaging script.
ucdPackaging.sh: [INFO] groovyz /var/dbb/extensions/dbb20/Pipeline/CreateUCDComponentVersion/dbb-ucd-packaging.groovy --buztool /var/ucd-agent/bin/buztool.sh --workDir /u/dbehm/backendWorkspace/MortApp/main/build-1/logs --component MortgageApplication --versionName MortgageApplication.build-1.2023-10-13_15-07-34 --propertyFile /var/jenkins/zappbuild_config/MortgageAppArtifactRepository.properties --pipelineURL http://acme.pipeline.org/MortgageApplication.build-1
** Create version start at 20231013.020812.008
** Properties at startup:
preview -> false
component -> MortgageApplication
buztoolPath -> /var/ucd-agent/bin/buztool.sh
buztoolPropertyFile -> /var/jenkins/zappbuild_config/MortgageAppArtifactRepository.properties
buildReportOrder -> [/u/dbehm/backendWorkspace/MortApp/main/build-1/logs/BuildReport.json]
startTime -> 20231013.020812.008
workDir -> /u/dbehm/backendWorkspace/MortApp/main/build-1/logs
versionName -> MortgageApplication.build-1.2023-10-13_15-07-34
pipelineURL -> http://acme.pipeline.org/MortgageApplication.build-1
ucdV2PackageFormat -> false
* Buildrecord type TYPE_COPY_TO_PDS is supported with DBB toolkit 1.0.8 and higher. Extracting build records for TYPE_COPY_TO_PDS might not be available and skipped. Identified DBB Toolkit version 2.0.1.
** Reading provided build report(s).
*** Parsing DBB build report /u/dbehm/backendWorkspace/MortApp/main/build-1/logs/BuildReport.json.
** Deployable files detected in /u/dbehm/backendWorkspace/MortApp/main/build-1/logs/BuildReport.json
DBEHM.MORTGAGE.MAIN.BLD.DBRM(EPSCMORT), DBRM
DBEHM.MORTGAGE.MAIN.BLD.LOAD(EPSCMORT), CICSLOAD
** Generate UCD ship list file
Creating general UCD component version properties.
Storing DBB Build result properties as general component version properties due to single build report.
Creating shiplist record for build output DBEHM.MORTGAGE.MAIN.BLD.DBRM(EPSCMORT) with recordType EXECUTE.
Creating shiplist record for build output DBEHM.MORTGAGE.MAIN.BLD.LOAD(EPSCMORT) with recordType EXECUTE.
** Write ship list file to /u/dbehm/backendWorkspace/MortApp/main/build-1/logs/shiplist.xml
** Following UCD buztool cmd will be invoked
/var/ucd-agent/bin/buztool.sh createzosversion -c MortgageApplication -s /u/dbehm/backendWorkspace/MortApp/main/build-1/logs/shiplist.xml -o /u/dbehm/backendWorkspace/MortApp/main/build-1/logs/buztool.output -prop /var/jenkins/zappbuild_config/MortgageAppArtifactRepository.properties -v "MortgageApplication.build-1.2023-10-13_15-07-34"
** Create version by running UCD buztool
....Command : createzosversion
Reading inputs from passed arguments:
....Component : MortgageApplication
....Shiplist file : /u/dbehm/backendWorkspace/MortApp/main/build-1/logs/shiplist.xml
....Version name : MortgageApplication.build-1.2023-10-13_15-07-34
....Output File Path : /u/dbehm/backendWorkspace/MortApp/main/build-1/logs/buztool.output
....Buztool Properties file : /var/jenkins/zappbuild_config/MortgageAppArtifactRepository.properties
....Reading inputs from properties file /var/jenkins/zappbuild_config/MortgageAppArtifactRepository.properties
[Info] Securing EXTREPO.PASSWORD in file /var/jenkins/zappbuild_config/MortgageAppArtifactRepository.properties:
zOS toolkit config : /var/ucd-agent/ (7.3.2.0,20230525-0827)
zOS toolkit binary : /var/ucd-agent/ (7.3.2.0,20230525-0827)
zOS toolkit data set : RATCFG.UCD.V7R3M2 (7.3.2.0,20230525-0827)
Verifying version
....Repository location : /var/ucd-agent/var/repository/MortgageApplication/MortgageApplication.build-1.2023-10-13_15-07-34
Pre-processing shiplist:
....Shiplist after processing :/var/ucd-agent/var/repository/MortgageApplication/MortgageApplication.build-1.2023-10-13_15-07-34/shiplist.xml
Packaging data sets:
....Location to store zip : /var/ucd-agent/var/repository/MortgageApplication/MortgageApplication.build-1.2023-10-13_15-07-34
....Zip name : package.zip
....DBEHM.MORTGAGE.MAIN.BLD.DBRM.bin
....DBEHM.MORTGAGE.MAIN.BLD.LOAD.bin
....Elapsed time for data set package or deploy operation : 1.202280 seconds.
Post-processing package:
PackageManifest file post-processing completed.
Create version and store package in external repository:
....Uploading artifacts to ARTIFACTORY
....Executing request PUT http://10.3.20.231:8081/artifactory/dbb-zos-mortgage-local/httpUpload/MortgageApplication.build-1.2023-10-13_15-07-34.zip HTTP/1.1
....Version artifacts stored in External Repository server
Elapsed time: 4.781 seconds.
** buztool output properties
component.name -> MortgageApplication
version.shiplist -> /u/dbehm/backendWorkspace/MortApp/main/build-1/logs/shiplist.xml
version.url -> https://10.3.20.96:8443/#version/be59f4b9-7f06-461a-b95c-7440c845d6d5
version.id -> be59f4b9-7f06-461a-b95c-7440c845d6d5
version.repository.type -> EXTERNAL REPOSITORY
version.name -> MortgageApplication.build-1.2023-10-13_15-07-34
** Build finished
ucdPackaging.sh: [INFO] DBB UCD Packaging Complete. rc=0
rc=0
Package Step - PackageBuildOutputs
-------------
testGenericWrapper.sh: [COMMAND] zowe zos-uss issue ssh "packageBuildOutputs.sh -w /u/dbehm/backendWorkspace/MortApp/main/build-1 -a MortgageApplication -t package.tar -b main -u -v MortgageApplication.2023-10-13_15-07-34 -p build"
$ packageBuildOutputs.sh -w /u/dbehm/backendWorkspace/MortApp/main/build-1 -a< /u/dbehm/backendWorkspace/MortApp/main/build-1 -a MortgageApplication -t pa</MortApp/main/build-1 -a MortgageApplication -t pac kage.tar -b main -u -v Mo<ortgageApplication -t package.tar -b main -u -v Mor tgageApplication.2023-10-<age.tar -b main -u -v MortgageApplication.2023-10-1 3_15-07-34 -p build
packageBuildOutputs.sh: [INFO] Package Build Outputs wrapper. Version=1.00
packageBuildOutputs.sh: [INFO] **************************************************************
packageBuildOutputs.sh: [INFO] ** Started - Package Build Outputs on HOST/USER: z/OS ZT01 04.00 02 8561/BPXROOT