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

fff

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