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

fix

parent 63421a78
......@@ -123,7 +123,7 @@ def checkout(buildType,systemName, branchName) {
checkout_luaui(systemName, branchName)
break
default:
echo "未知的buildType: ${cbuildType}"
echo "未知的buildType: ${buildType}"
break
}
......
......@@ -15,7 +15,7 @@ def call(body) {
def systemName = env.GIT_PRO_NAME
def branchName = env.BRANCH_NAME
def buildType = env.BUILD_TYPE == "ui" ? "lua-ui" : env.BUILD_TYPE
def buildType = env.BUILD_TYPE == "ui" ? "lua-ui" : env.BUILD_TYPE == "node" ? "nodejs" : env.BUILD_TYPE
/* def namespace = env.NAMESPACE*/
/* def isDeploy = env.IS_DEPLOY*/
def buildNumber = env.BUILD_NUMBER //
......
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