schedulord-backend/Jenkinsfile

39 lines
631 B
Plaintext
Raw Normal View History

2022-06-09 12:47:25 +00:00
pipeline {
agent any
tools {
nodejs "node"
}
stages {
stage('NPM Install') {
steps {
sh 'npm install'
}
}
// stage('Test') {
// steps {
// sh 'npm run ng test --progress=false --watch false'
// junit '**/test-results.xml'
// }
// }
2022-06-09 13:01:40 +00:00
// stage('Lint') {
// steps {
// sh 'npm run ng lint'
// }
// }
stage('Build Angular') {
2022-06-09 12:47:25 +00:00
steps {
2022-06-09 13:01:40 +00:00
sh 'npm run ng build --prod --aot --sm --progress=false'
2022-06-09 12:47:25 +00:00
}
}
2022-06-09 13:01:40 +00:00
stage('Build Dockerfile') {
2022-06-09 12:47:25 +00:00
steps {
2022-06-09 13:01:40 +00:00
sh 'docker build . -t schedulord-backend'
2022-06-09 12:47:25 +00:00
}
}
}
}