From bc37b7c60de0ee2f6bf7bea76c7ceb74e93c1d97 Mon Sep 17 00:00:00 2001 From: Igor Todorovski Date: Tue, 26 Jul 2022 08:55:24 -0400 Subject: [PATCH] Fix cicd.groovy script --- cicd.groovy | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cicd.groovy b/cicd.groovy index 2b66fe6..e24235e 100644 --- a/cicd.groovy +++ b/cicd.groovy @@ -10,6 +10,6 @@ node('linux') } stage('Build') { - build job: 'Port-Pipeline', parameters: [string(name: 'PORT_GITHUB_REPO', value: 'https://github.com/ZOSOpenTools/makeport.git'), string(name: 'PORT_DESCRIPTION', value: 'GNU Make is a tool which controls the generation of executables and other non-source files of a program from the program's source files.' )] + build job: 'Port-Pipeline', parameters: [string(name: 'PORT_GITHUB_REPO', value: 'https://github.com/ZOSOpenTools/makeport.git'), string(name: 'PORT_DESCRIPTION', value: 'GNU Make is a tool which controls the generation of executables and other non-source files of a program from program source files.' )] } }