Skip to content

Commit

Permalink
Merge branch 'main' of github.com:ZOSOpenTools/m4port into main
Browse files Browse the repository at this point in the history
  • Loading branch information
Mike Fulton committed Jul 20, 2022
2 parents bd3f9d3 + 48d8f46 commit e59cd72
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions cicd.groovy
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
node('linux')
{
stage ('Poll') {
checkout([
$class: 'GitSCM',
branches: [[name: '*/main']],
doGenerateSubmoduleConfigurations: false,
extensions: [],
userRemoteConfigs: [[url: 'https://github.com/ZOSOpenTools/m4port.git']]])
}

stage('Build') {
build job: 'Port-Pipeline', parameters: [string(name: 'PORT_GITHUB_REPO', value: 'https://github.com/ZOSOpenTools/m4port.git'), string(name: 'PORT_DESCRIPTION', value: 'M4 is an implementation of the traditional Unix macro processor.' )]
}
}

0 comments on commit e59cd72

Please sign in to comment.