Commit 76435a61 authored by daidekun's avatar daidekun

fixbugs

parent 1cf54a42
......@@ -13,6 +13,7 @@ def call(body) {
def room = env.room
def hosts = env.hosts
def action = env.action
def gitUrl = env.git_url
def rollbackToRelease = env.rollback_to_release
body.resolveStrategy = Closure.DELEGATE_FIRST
......@@ -25,7 +26,7 @@ def call(body) {
}
stage('Build') {
sh "ansible-playbook /etc/ansible/build.yml -e project_name=${config.envType}.${projectName} -e repo_name=${repoName} -e branch_name=${branchName} -vv"
sh "ansible-playbook /etc/ansible/build.yml -e project_name=${config.envType}.${projectName} -e repo_name=${repoName} -e branch_name=${branchName} -e git_url=${gitUrl} -vv"
}
stage('Deploy') {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment