Skip to content
This repository has been archived by the owner on Oct 5, 2022. It is now read-only.

Commit

Permalink
fix pipeline now that we dont include the clients build container in …
Browse files Browse the repository at this point in the history
…the maven build pod anymore
  • Loading branch information
rawlingsj committed Feb 25, 2017
1 parent 373e273 commit b3a11b7
Showing 1 changed file with 14 additions and 12 deletions.
26 changes: 14 additions & 12 deletions Jenkinsfile
@@ -1,20 +1,22 @@
#!/usr/bin/groovy
@Library('github.com/fabric8io/fabric8-pipeline-library@master')
def dummy
mavenNode {
ws{
checkout scm
sh "git remote set-url origin git@github.com:fabric8io/fabric8.git"
clientsTemplate{
mavenNode {
ws{
checkout scm
sh "git remote set-url origin git@github.com:fabric8io/fabric8.git"

def pipeline = load 'release.groovy'
def pipeline = load 'release.groovy'

stage 'Stage'
def stagedProject = pipeline.stage()
stage 'Stage'
def stagedProject = pipeline.stage()

stage 'Promote'
pipeline.release(stagedProject)

stage 'Update downstream dependencies'
pipeline.updateDownstreamDependencies(stagedProject)
stage 'Promote'
pipeline.release(stagedProject)

stage 'Update downstream dependencies'
pipeline.updateDownstreamDependencies(stagedProject)
}
}
}

0 comments on commit b3a11b7

Please sign in to comment.