build command has changed

This commit is contained in:
Hyatt 2023-03-09 17:15:25 -06:00
parent d96c56b6f0
commit f2f9632e83
Signed by: nhyatt
GPG Key ID: C50D0BBB5BC40BEA

View File

@ -7,6 +7,7 @@ def workspace
def k8slensVersion
def jsNodeID
def doBuild = false
def buildCommand
def label = "kubernetes-${UUID.randomUUID().toString()}"
def templateName = "pipeline-worker"
@ -74,14 +75,23 @@ pipeline {
echo "Version (${k8slensVersion}) is valid, we will build it with node 14."
doBuild = true
jsNodeID = 'node-14'
buildCommand = "make"
} else if (k8slensVersion ==~ '5\\.6\\.[0-9]+$') {
echo "Version (${k8slensVersion}) is valid, we will build it with node 16."
doBuild = true
jsNodeID = 'node-16'
} else if (k8slensVersion ==~ '6\\.[0-9]+\\.[0-9]+$') {
buildCommand = "make"
} else if (k8slensVersion ==~ '6\\.[0-3]+\\.[0-9]+$') {
echo "Version (${k8slensVersion}) is valid, we will build it with node 16."
doBuild = true
jsNodeID = 'node-16'
buildCommand = "make"
} else if (k8slensVersion ==~ '6\\.[4-9]+\\.[0-9]+$') {
echo "Version (${k8slensVersion}) is valid, we will build it with node 18."
doBuild = true
jsNodeID = 'node-16'
buildCommand = "yarn && yarn run build && yarn run build:app"
}
} else {
echo "Version (${k8slensVersion}) is not valid, we will not build it."
}
@ -158,7 +168,7 @@ pipeline {
printf '%s\\n' "Changing directory"
cd "${workspace}/lens"
printf '%s\\n' "Building..."
make build
${buildCommand}
"""
}
}