moves build containe rback to node
This commit is contained in:
parent
12a3b14190
commit
96e1e85fec
@ -19,8 +19,13 @@ pipeline {
|
|||||||
alpine: true,
|
alpine: true,
|
||||||
[
|
[
|
||||||
[
|
[
|
||||||
name: "ubuntu-focal",
|
name: "node-14",
|
||||||
path: "${repository}/dockerhub/library/ubuntu:focal",
|
path: "${repository}/dockerhub/library/node:14",
|
||||||
|
command: "/bin/sh"
|
||||||
|
],
|
||||||
|
[
|
||||||
|
name: "node-16",
|
||||||
|
path: "${repository}/dockerhub/library/node:16",
|
||||||
command: "/bin/sh"
|
command: "/bin/sh"
|
||||||
]
|
]
|
||||||
]
|
]
|
||||||
@ -48,7 +53,6 @@ pipeline {
|
|||||||
if ! command -v jq &> /dev/null; then
|
if ! command -v jq &> /dev/null; then
|
||||||
apk add --no-cache jq
|
apk add --no-cache jq
|
||||||
fi
|
fi
|
||||||
apk add --no-cache coreutils
|
|
||||||
"""
|
"""
|
||||||
k8slensVersion = sh (
|
k8slensVersion = sh (
|
||||||
script: """
|
script: """
|
||||||
@ -66,10 +70,18 @@ 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 ==~ '6\\.[0-9]+\\.[0-9]+$') {
|
if (k8slensVersion ==~ '5\\.5\\.[0-9]+$') {
|
||||||
|
echo "Version (${k8slensVersion}) is valid, we will build it with node 14."
|
||||||
|
doBuild = true
|
||||||
|
jsNodeID = 'node-14'
|
||||||
|
} else if (k8slensVersion ==~ '5\\.6\\.[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 = 'ubuntu-focal'
|
jsNodeID = 'node-16'
|
||||||
|
} else if (k8slensVersion ==~ '6\\.[0-9]+\\.[0-9]+$') {
|
||||||
|
echo "Version (${k8slensVersion}) is valid, we will build it with node 16."
|
||||||
|
doBuild = true
|
||||||
|
jsNodeID = 'node-16'
|
||||||
} else {
|
} else {
|
||||||
echo "Version (${k8slensVersion}) is not valid, we will not build it."
|
echo "Version (${k8slensVersion}) is not valid, we will not build it."
|
||||||
}
|
}
|
||||||
@ -88,7 +100,7 @@ pipeline {
|
|||||||
}
|
}
|
||||||
steps {
|
steps {
|
||||||
script {
|
script {
|
||||||
dir("lens") {
|
dir(workspace + "/lens") {
|
||||||
checkout ([
|
checkout ([
|
||||||
$class: "GitSCM",
|
$class: "GitSCM",
|
||||||
branches: [
|
branches: [
|
||||||
@ -98,7 +110,7 @@ pipeline {
|
|||||||
],
|
],
|
||||||
userRemoteConfigs: [
|
userRemoteConfigs: [
|
||||||
[
|
[
|
||||||
url: "https://github.com/lensapp/lens.git",
|
url: "https://gitea.smoothnet.org/nhyatt/openlens.git",
|
||||||
],
|
],
|
||||||
],
|
],
|
||||||
extensions: [
|
extensions: [
|
||||||
@ -128,15 +140,8 @@ pipeline {
|
|||||||
script {
|
script {
|
||||||
sh """
|
sh """
|
||||||
apt-get update
|
apt-get update
|
||||||
DEBIAN_FRONTEND=noninteractive TZ=Etc/UTC apt-get install --no-install-recommends -y curl ca-certificates gcc g++ make git rpm tzdata
|
DEBIAN_FRONTEND=noninteractive TZ=Etc/UTC apt-get install --no-install-recommends -y rpm
|
||||||
curl -fsSL https://deb.nodesource.com/setup_16.x | bash -
|
|
||||||
curl -sL https://dl.yarnpkg.com/debian/pubkey.gpg | gpg --dearmor | tee /usr/share/keyrings/yarnkey.gpg > /dev/null
|
|
||||||
echo "deb [signed-by=/usr/share/keyrings/yarnkey.gpg] https://dl.yarnpkg.com/debian stable main" | tee /etc/apt/sources.list.d/yarn.list
|
|
||||||
apt-get update
|
|
||||||
apt-get install --no-install-recommends -y yarn nodejs
|
|
||||||
mkdir -p /tmp/npm/cache
|
|
||||||
cd "${workspace}/lens"
|
cd "${workspace}/lens"
|
||||||
export npm_config_cache=/tmp/npm/cache
|
|
||||||
make build
|
make build
|
||||||
"""
|
"""
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user