This commit is contained in:
Hyatt 2022-09-26 19:06:54 -05:00
parent 4f6fc7b5b1
commit bb4ad21942
Signed by: nhyatt
GPG Key ID: C50D0BBB5BC40BEA

View File

@ -42,9 +42,6 @@ pipeline {
container ('alpine') { container ('alpine') {
script { script {
sh """ sh """
if ! command -v git &> /dev/null; then
apk add --no-cache git
fi
if ! command -v curl &> /dev/null; then if ! command -v curl &> /dev/null; then
apk add --no-cache curl apk add --no-cache curl
fi fi
@ -61,7 +58,7 @@ pipeline {
--fail \ --fail \
--request GET \ --request GET \
--url https://api.github.com/repos/lensapp/lens/releases/latest | \ --url https://api.github.com/repos/lensapp/lens/releases/latest | \
jq --raw 'select(.prerelease == false) | .tag_name[1:]' jq -r 'select(.prerelease == false) | .tag_name[1:]'
""", """,
returnStdout: true returnStdout: true
).trim() ).trim()
@ -131,7 +128,7 @@ pipeline {
script { script {
sh """ sh """
apt update apt update
apt install --no-install-recommends -y curl ca-certificates gcc g++ make git rpm jq apt install --no-install-recommends -y curl ca-certificates gcc g++ make git rpm
curl -fsSL https://deb.nodesource.com/setup_16.x | bash - 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 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 echo "deb [signed-by=/usr/share/keyrings/yarnkey.gpg] https://dl.yarnpkg.com/debian stable main" | tee /etc/apt/sources.list.d/yarn.list