如果需要在 Jenkins 的子文件夹中执行命令,我们不能使用
cd
的方式来进入子文件夹。
而是需要在 steps 中定义 Dir
如下面的配置:
stage('Build VUE') {
steps {
echo 'Building..'
dir('Vuejs/Admin') {
sh 'yarn install'
sh 'npx browserslist@latest --update-db'
sh 'yarn build'
}
}
}
上面的命令就可以子文件夹中执行命令。
https://www.ossez.com/t/jenkins-pipeline/14163
标签:pipeline,到子,sh,文件夹,Jenkins,执行命令 From: https://www.cnblogs.com/huyuchengus/p/16823665.html