Commit c66b7d2e authored by tong.li's avatar tong.li

Merge branch 'master' of git.quantgroup.cn:QA/global-jenkinsfile

parents e7732eda f116bc5d
...@@ -124,8 +124,8 @@ def build_nodejs(namespace, systemName, contextDir, repoName, branchName, worksp ...@@ -124,8 +124,8 @@ def build_nodejs(namespace, systemName, contextDir, repoName, branchName, worksp
sh "bower install" sh "bower install"
} }
/* sh "cp -rf /home/quant_group/jenkins_home/workspace/pre.${systemName}/node_modules/ node_modules" sh "cp -rf /home/quant_group/jenkins_home/workspace/pre.${systemName}/node_modules/ node_modules"
*/
sh "mv -f env.config.js ${configPath}" sh "mv -f env.config.js ${configPath}"
sh "npm install --registry=https://registry.npm.taobao.org" sh "npm install --registry=https://registry.npm.taobao.org"
...@@ -182,7 +182,3 @@ def deploy(namespace, systemName, imageTag, tier, isDeploy) { ...@@ -182,7 +182,3 @@ def deploy(namespace, systemName, imageTag, tier, isDeploy) {
def clean_images(imageTag) { def clean_images(imageTag) {
sh "docker rmi -f \$(docker images -q ${imageTag})" sh "docker rmi -f \$(docker images -q ${imageTag})"
} }
\ No newline at end of file
def clean_dir(contextDir) {
deleteDir()
}
\ No newline at end of file
...@@ -29,10 +29,9 @@ def call(body) { ...@@ -29,10 +29,9 @@ def call(body) {
node { node {
try { try {
dir (systemName) {
stage('Clean') { stage('Clean') {
_utils.beautyEcho(1, 'Clean') _utils.beautyEcho(1, 'Clean')
_stage.clean_dir()
} }
stage('Checkout') { stage('Checkout') {
...@@ -102,6 +101,7 @@ def call(body) { ...@@ -102,6 +101,7 @@ def call(body) {
_utils.beautyEcho(7, 'Clean') _utils.beautyEcho(7, 'Clean')
_stage.clean_images(imageTag) _stage.clean_images(imageTag)
} }
}
} catch (err) { } catch (err) {
if (imageTag) { if (imageTag) {
......
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