rt-sim-training-client/Jenkinsfile-prd

28 lines
482 B
Plaintext
Raw Normal View History

2019-07-02 16:29:52 +08:00
pipeline {
agent {
node {
label 'master'
}
}
stages {
stage('Package') {
tools {
nodejs 'nodejs-10'
}
steps {
2020-09-25 19:03:58 +08:00
sh 'npm update'
2019-07-02 16:29:52 +08:00
sh 'npm install'
sh 'npm run build'
}
}
stage('Publish') {
steps {
sh 'cp -rf ./dist/* /usr/local/joylink/jlclient'
}
}
}
}