Removes builds for older versions

This commit is contained in:
Hyatt 2023-06-01 09:30:31 -05:00
parent 7dbcbb0a30
commit e162b21164
Signed by: nhyatt
GPG Key ID: C50D0BBB5BC40BEA

View File

@ -19,11 +19,6 @@ pipeline {
templateName: templateName, templateName: templateName,
alpine: true, alpine: true,
[ [
[
name: "node-14",
path: "${repository}/dockerhub/library/node:14",
command: "/bin/sh"
],
[ [
name: "node-16", name: "node-16",
path: "${repository}/dockerhub/library/node:16", path: "${repository}/dockerhub/library/node:16",
@ -71,27 +66,7 @@ pipeline {
} }
script { script {
if (k8slensVersion ==~ '([5-9]|[0-9]{2,})\\.[0-9]+\\.[0-9]+$') { if (k8slensVersion ==~ '([5-9]|[0-9]{2,})\\.[0-9]+\\.[0-9]+$') {
if (k8slensVersion ==~ '5\\.5\\.[0-9]+$') { if (k8slensVersion ==~ '6\\.[5-9]+\\.[0-9]+$') {
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'
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\\.[0-9]+$') {
echo "Version (${k8slensVersion}) is valid, we will build it with node 16."
doBuild = true
jsNodeID = 'node-16'
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." echo "Version (${k8slensVersion}) is valid, we will build it with node 16."
doBuild = true doBuild = true
jsNodeID = 'node-16' jsNodeID = 'node-16'