Merge pull request #1456 from johndoe6345789/codex/add-xz-installation-to-jenkinsfile

Install xz-utils before extracting Node archive
This commit is contained in:
2026-01-13 22:01:31 +00:00
committed by GitHub

2
Jenkinsfile vendored
View File

@@ -22,6 +22,8 @@ pipeline {
stage('Download Node') {
steps {
sh '''
apt-get update
apt-get install -y xz-utils
curl -fsSLO https://nodejs.org/dist/v${NODE_VERSION}/${NODE_DIST}.tar.xz
tar -xJf ${NODE_DIST}.tar.xz
node --version