Browse Source

attempting #2

pull/1/head
Grant Limberg 10 years ago
parent
commit
7e7462b39e
  1. 10
      Jenkinsfile

10
Jenkinsfile vendored

@ -1,9 +1,13 @@
#!/usr/bin/env groovy #!/usr/bin/env groovy
passedBuilds = [] node('master') {
def changelog = lastSuccessfulBuild(passedBuilds, currentBuild) checkout scm
passedBuilds = []
def changelog = lastSuccessfulBuild(passedBuilds, currentBuild)
slackSend "Building ${env.JOB_NAME} #${env.BUILD_NUMBER} \n ${changelog}"
}
slackSend "Building ${env.JOB_NAME} #${env.BUILD_NUMBER} \n ${changelog}"
parallel 'centos7': { parallel 'centos7': {
node('centos7') { node('centos7') {
try { try {

Loading…
Cancel
Save