another attempt to build using ubuntu.

This commit is contained in:
Hyatt 2022-09-26 19:03:30 -05:00
parent 114dc7ec65
commit 4fe8033d99
Signed by: nhyatt
GPG Key ID: C50D0BBB5BC40BEA

View File

@ -19,13 +19,8 @@ pipeline {
alpine: true, alpine: true,
[ [
[ [
name: "node-14", name: "ubuntu-focal",
path: "${repository}/dockerhub/library/node:14", path: "${repository}/dockerhub/library/ubuntu:focal",
command: "/bin/sh"
],
[
name: "node-16",
path: "${repository}/dockerhub/library/node:16",
command: "/bin/sh" command: "/bin/sh"
] ]
] ]
@ -50,39 +45,34 @@ pipeline {
if ! command -v git &> /dev/null; then if ! command -v git &> /dev/null; then
apk add --no-cache git apk add --no-cache git
fi fi
if ! command -v curl &> /dev/null; then
apk add --no-cache curl
fi
if ! command -v jq &> /dev/null; then
apk add --no-cache jq
fi
apk add --no-cache coreutils apk add --no-cache coreutils
""" """
k8slensVersion = "refs/tags/" + sh ( k8slensVersion = sh (
script: """ script: """
git \ curl \
-c \'versionsort.suffix=-\' \ --location \
ls-remote https://gitea.smoothnet.org/nhyatt/openlens.git \'v*.*.*\' \ --silent \
| cut \ --fail \
--delimiter=\'/\' \ --request GET \
--fields=3 \ --url https://api.github.com/repos/lensapp/lens/releases/latest | \
| sort \ jq --raw 'select(.prerelease == false) | .tag_name[1:]'
-u \
| tail \
-n 1
""", """,
returnStdout: true returnStdout: true
).trim() ).trim()
} }
} }
script { script {
if (k8slensVersion ==~ 'refs\\/tags\\/v([5-9]|[0-9]{2,})\\.[0-9]+\\.[0-9]+$') { if (k8slensVersion ==~ '([5-9]|[0-9]{2,})\\.[0-9]+\\.[0-9]+$') {
if (k8slensVersion ==~ 'refs\\/tags\\/v5\\.5\\.[0-9]+$') { if (k8slensVersion ==~ '6\\.[0-9]+\\.[0-9]+$') {
echo "Version (${k8slensVersion}) is valid, we will build it with node 14."
doBuild = true
jsNodeID = 'node-14'
} else if (k8slensVersion ==~ 'refs\\/tags\\/v5\\.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 = 'node-16' jsNodeID = 'ubuntu-focal'
} else if (k8slensVersion ==~ 'refs\\/tags\\/v6\\.[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."
} }
@ -106,7 +96,7 @@ pipeline {
$class: "GitSCM", $class: "GitSCM",
branches: [ branches: [
[ [
name: k8slensVersion, name: "refs/tags/v" + k8slensVersion,
], ],
], ],
userRemoteConfigs: [ userRemoteConfigs: [
@ -140,10 +130,13 @@ pipeline {
container (jsNodeID) { container (jsNodeID) {
script { script {
sh """ sh """
apt-get update apt update
apt-get install -y rpm apt install --no-install-recommends -y curl ca-certificates gcc g++ make git rpm
rm -rf /root/.npm curl -fsSL https://deb.nodesource.com/setup_16.x | bash -
su - node 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 update
apt install yarn nodejs
cd "${workspace}/lens" cd "${workspace}/lens"
make build make build
""" """