Added jenkins.develop file
FarmMaps.Develop/FarmMapsLib/develop There was a failure building this commit Details

pull/1/head
Willem Dantuma 2019-07-16 16:29:37 +02:00
parent 0fe5cb166c
commit 87718d1c3c
1 changed files with 27 additions and 0 deletions

View File

@ -0,0 +1,27 @@
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']])
)
}
}
}