diff --git a/Jenkinsfile.develop b/Jenkinsfile.develop new file mode 100644 index 0000000..4ecccae --- /dev/null +++ b/Jenkinsfile.develop @@ -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']]) + ) + } + } +} \ No newline at end of file