.
This commit is contained in:
parent
4f6fc7b5b1
commit
bb4ad21942
@ -42,9 +42,6 @@ pipeline {
|
||||
container ('alpine') {
|
||||
script {
|
||||
sh """
|
||||
if ! command -v git &> /dev/null; then
|
||||
apk add --no-cache git
|
||||
fi
|
||||
if ! command -v curl &> /dev/null; then
|
||||
apk add --no-cache curl
|
||||
fi
|
||||
@ -61,7 +58,7 @@ pipeline {
|
||||
--fail \
|
||||
--request GET \
|
||||
--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
|
||||
).trim()
|
||||
@ -131,7 +128,7 @@ pipeline {
|
||||
script {
|
||||
sh """
|
||||
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 -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
|
||||
|
Reference in New Issue
Block a user