openlens switched to npm

This commit is contained in:
Hyatt 2023-06-01 08:31:25 -05:00
parent 1ce85999ae
commit ac12ff01a0
Signed by: nhyatt
GPG Key ID: C50D0BBB5BC40BEA

View File

@ -86,11 +86,16 @@ pipeline {
doBuild = true doBuild = true
jsNodeID = 'node-16' jsNodeID = 'node-16'
buildCommand = "make" buildCommand = "make"
} else if (k8slensVersion ==~ '6\\.[4-9]+\\.[0-9]+$') { } else if (k8slensVersion ==~ '6\\.4\\.[0-9]+$') {
echo "Version (${k8slensVersion}) is valid, we will build it with node 16." echo "Version (${k8slensVersion}) is valid, we will build it with node 16."
doBuild = true doBuild = true
jsNodeID = 'node-16' jsNodeID = 'node-16'
buildCommand = "yarn && yarn run build && yarn run build:app" buildCommand = "yarn && yarn run build && yarn run build:app"
} else if (k8slensVersion ==~ '6\\.[5-9]+\\.[0-9]+$') {
echo "Version (${k8slensVersion}) is valid, we will build it with node 16."
doBuild = true
jsNodeID = 'node-16'
buildCommand = "npm install -g npm@^9.6.7 && npm install && npm run build && npm run build:app -- --scope=open-lens -- --dir"
} else { } else {
echo "Version (${k8slensVersion}) is not valid, we will not build it." echo "Version (${k8slensVersion}) is not valid, we will not build it."
} }