rt-sim-training-client/Jenkinsfile-prd
joylink_cuiweidong 47328af26b 代码调整
2020-09-25 19:03:58 +08:00

28 lines
482 B
Plaintext

pipeline {
agent {
node {
label 'master'
}
}
stages {
stage('Package') {
tools {
nodejs 'nodejs-10'
}
steps {
sh 'npm update'
sh 'npm install'
sh 'npm run build'
}
}
stage('Publish') {
steps {
sh 'cp -rf ./dist/* /usr/local/joylink/jlclient'
}
}
}
}