Commit 0bc7722e by Administrator

Add new file

parent 41777a59
pipeline {
agent any
stages {
stage('build') {
steps {
sh 'mvn -B -DskipTests clean package'
}
}
stage('Transmit') {
steps {
sh 'pwd'
}
}
stage('Deploy') {
steps {
sh 'pwd'
}
}
stage('Sendmail') {
steps {
emailext(subject: '$DEFAULT_SUBJECT', body: '$DEFAULT_CONTENT', attachLog: true, compressLog: true, postsendScript: '$DEFAULT_POSTSEND_SCRIPT', presendScript: '$DEFAULT_PRESEND_SCRIPT', replyTo: 'zhangjinxiao@zhiweidata.com,yuchengyi@zhiweidata.com', to: 'zhangjinxiao@zhiweidata.com,chenweiyang@zhiweidata.com')
}
}
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment