adding Jenkinsfile

pull/1/head
Chris Veilleux 2019-01-24 15:57:33 -06:00
parent 1bd8a8c47a
commit 00e4d7f689
1 changed files with 26 additions and 0 deletions

26
Jenkinsfile vendored Normal file
View File

@ -0,0 +1,26 @@
pipeline {
agent any
stages {
stage('Build') {
steps {
echo 'Building..'
sh 'npm install'
sh 'ng build --project globalnav'
sh 'ng build --project page-not-found'
sh 'ng build --project account'
}
}
stage('Test') {
steps {
echo 'Testing..'
echo 'No testing included in this pipeline'
}
}
stage('Deploy') {
steps {
echo 'Deploying....'
}
}
}
}