sync jmh Jenkinsfile

Signed-off-by: olivier lamy <oliver.lamy@gmail.com>
This commit is contained in:
olivier lamy 2018-08-17 08:06:40 +10:00
parent 13792a65d2
commit a3451c9d6e
1 changed files with 3 additions and 1 deletions

View File

@ -1,5 +1,7 @@
#!groovy
def branch = params.get("JETTY_BRANCH" ,"jetty-9.4.x")
def owner = params.get("REPO_OWNER", "eclipse")
node("linux") {
// System Dependent Locations
@ -16,7 +18,7 @@ node("linux") {
stage("Checkout") {
git url: 'https://github.com/eclipse/jetty.project.git', branch: 'jetty-9.4.x'
git url: "https://github.com/$owner/jetty.project.git", branch: "$branch"
}
stage("Compile") {