//file:noinspection ALL pipeline { agent any environment { projectName = 'yvan-ext' } stages { stage('#检查环境') { steps { sh """ node -v npm -v yarn -v """ } } stage('#编译项目') { steps { sh """ wget -N http://git.yvanui.com/projects/jztd-deploy/raw/master/00base/01yvan-ext.sh chmod +x 01yvan-ext.sh ./01yvan-ext.sh deploy """ } } } }