Skip to content
This repository has been archived by the owner on May 7, 2021. It is now read-only.

Commit

Permalink
fix: tester
Browse files Browse the repository at this point in the history
  • Loading branch information
rawlingsj committed Mar 15, 2017
1 parent e8c4b7a commit 44149f4
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 4 deletions.
8 changes: 6 additions & 2 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -21,16 +21,20 @@ fabric8UITemplate{
branch = utils.getBranch()
}

def published
container('ui'){
pipeline.cd(branch)
published = pipeline.cd(branch)
}

def releaseVersion
container('clients'){
releaseVersion = utils.getLatestVersionFromTag()
}

// pipeline.updateDownstreamProjects(releaseVersion)
if (published){
echo 'we would updateDownstreamProjects'
//pipeline.updateDownstreamProjects(releaseVersion)
}
}
}
}
Expand Down
5 changes: 3 additions & 2 deletions release.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,10 @@ def cd (b){
}

stage('release'){
npmRelease{
def published = npmRelease{
branch = b
}
}
return published
}
}

Expand Down

0 comments on commit 44149f4

Please sign in to comment.