diff --git a/cicd.groovy b/cicd.groovy new file mode 100644 index 0000000..a4a085e --- /dev/null +++ b/cicd.groovy @@ -0,0 +1,15 @@ +node('linux') +{ + stage ('Poll') { + checkout([ + $class: 'GitSCM', + branches: [[name: '*/main']], + doGenerateSubmoduleConfigurations: false, + extensions: [], + userRemoteConfigs: [[url: 'https://github.com/ZOSOpenTools/autoconfport.git']]]) + } + + stage('Build') { + build job: 'Port-Pipeline', parameters: [string(name: 'PORT_GITHUB_REPO', value: 'https://github.com/ZOSOpenTools/autoconfport.git'), string(name: 'PORT_DESCRIPTION', value: 'Autoconf is an extensible package of M4 macros that produce shell scripts to automatically configure software source code packages.' )] + } +}