Commit c49f5c31 authored by wentao.suo's avatar wentao.suo

fff

parent 65cdda86
...@@ -50,8 +50,7 @@ def call(body) { ...@@ -50,8 +50,7 @@ def call(body) {
stage('checkout & build') { stage('checkout & build') {
_utils.beautyEcho("checkout & build", "stage") _utils.beautyEcho("checkout & build", "stage")
_utils.beautyEcho(pacegeDockerInfo["image"], "info")
_utils.beautyEcho(pacegeDockerInfo["args"], "info")
docker.image(pacegeDockerInfo["image"]).inside(pacegeDockerInfo["args"]){ docker.image(pacegeDockerInfo["image"]).inside(pacegeDockerInfo["args"]){
...@@ -59,19 +58,20 @@ def call(body) { ...@@ -59,19 +58,20 @@ def call(body) {
def gitPath = project_attr["gitPath"] def gitPath = project_attr["gitPath"]
/*checkout code*/ /*checkout code*/
_utils.beautyEcho("checkout", "stage") _utils.beautyEcho("checkout", "info")
_stage.checkout(gitPath, branchName) _stage.checkout(gitPath, branchName)
/*prepare config*/ /*prepare config*/
_utils.beautyEcho("prepare config", "stage") _utils.beautyEcho("prepare config", "info")
_stage.prepare_config(systemName, contextDir) _stage.prepare_config(systemName, contextDir)
/*build*/ /*build*/
_utils.beautyEcho("build", "stage") _utils.beautyEcho("build", "info")
def buildCmd = project_attr["buildCmd"] def buildCmd = project_attr["buildCmd"]
sh "${buildCmd}" sh "${buildCmd}"
/*copy files*/ /*copy files*/
_utils.beautyEcho("copy files", "info")
_stage.copy_files(config.buildType,project_attr["jarFilePath"],contextDir) _stage.copy_files(config.buildType,project_attr["jarFilePath"],contextDir)
} }
} }
......
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