FarmMapsLib/Jenkinsfile.develop

27 lines
583 B
Plaintext
Raw Normal View History

2019-07-16 14:29:37 +00:00
pipeline {
agent any
stages {
stage('npm install'){
steps {
sh '''npm install'''
}
}
stage('build'){
steps {
sh '''ng build common
cp projects/common/src/assets/resumable.js dist/common/fesm5
}
}
}
post {
always {
emailext (
body: '${DEFAULT_CONTENT}',
mimeType: 'text/html',
replyTo: '${DEFAULT_REPLYTO}',
subject: '${DEFAULT_SUBJECT}',
to: emailextrecipients([[$class: 'CulpritsRecipientProvider'], [$class: 'RequesterRecipientProvider']])
)
}
}
}